Changeset 35605
- Timestamp:
- 08/06/08 09:33:19 (4 months ago)
- Location:
- trunk
- Files:
-
- 4 modified
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/accessibility/bounds-for-range-expected.txt (modified) (1 diff)
-
WebKitTools/ChangeLog (modified) (1 diff)
-
WebKitTools/DumpRenderTree/mac/AccessibilityUIElementMac.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r35593 r35605 1 2008-08-06 chris fleizach <cfleizach@apple.com> 2 3 Reviewed by Beth Dakin 4 5 Fix AX layout test for multi-platform 6 7 * accessibility/bounds-for-range-expected.txt: 8 1 9 2008-08-06 Cameron Zwarich <cwzwarich@uwaterloo.ca> 2 10 -
trunk/LayoutTests/accessibility/bounds-for-range-expected.txt
r35491 r35605 52 52 53 53 ---------------------- 54 {{- 9945.000000, 10850.000000}, {59.000000, 18.000000}}55 {{- 9982.000000, 10832.000000}, {215.000000, 18.000000}}56 {{- 9992.000000, 10814.000000}, {11.000000, 18.000000}}57 {{- 9992.000000, 10778.000000}, {766.000000, 36.000000}}58 {{- 9949.000000, 10778.000000}, {1.000000, 18.000000}}54 {{-1.000000, -1.000000}, {59.000000, 18.000000}} 55 {{-1.000000, -1.000000}, {215.000000, 18.000000}} 56 {{-1.000000, -1.000000}, {11.000000, 18.000000}} 57 {{-1.000000, -1.000000}, {766.000000, 36.000000}} 58 {{-1.000000, -1.000000}, {1.000000, 18.000000}} 59 59 60 60 -
trunk/WebKitTools/ChangeLog
r35589 r35605 1 2008-08-06 chris fleizach <cfleizach@apple.com> 2 3 Reviewed by Beth Dakin 4 5 AX functions shouldn't return position information because it changes 6 based on the platform 7 8 * DumpRenderTree/mac/AccessibilityUIElementMac.mm: 9 (AccessibilityUIElement::boundsForRange): 10 1 11 2008-08-06 Eric Seidel <eric@webkit.org> 2 12 -
trunk/WebKitTools/DumpRenderTree/mac/AccessibilityUIElementMac.mm
r35491 r35605 290 290 rect = [value rectValue]; 291 291 292 NSMutableString* boundsDescription = [NSMutableString stringWithFormat:@"{{%f, %f}, {%f, %f}}",rect.origin.x,rect.origin.y,rect.size.width,rect.size.height]; 292 // don't return position information because it is platform dependent 293 NSMutableString* boundsDescription = [NSMutableString stringWithFormat:@"{{%f, %f}, {%f, %f}}",-1.0f,-1.0f,rect.size.width,rect.size.height]; 293 294 return [boundsDescription createJSStringRef]; 294 295 }