Changeset 105401 in webkit
- Timestamp:
- Jan 19, 2012, 4:17:09 AM (15 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
platform/chromium/test_expectations.txt (modified) (1 diff)
-
svg/text/resources/SelectionTestCase.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r105397 r105401 1 2012-01-19 Nikolas Zimmermann <nzimmermann@rim.com> 2 3 RenderSVGRoot should inherit from RenderReplaced 4 https://bugs.webkit.org/show_bug.cgi?id=76446 5 6 Reviewed by Pavel Feldman. 7 8 Fix Chromium specific problem with svg/text/select-x-list-4.svg, making it fail on the bots. 9 After transforming the endPos.x + 1 -> absEndPos.x, subtract -1 again, to be sure we don't 10 select text too far after the end position, making the selection currently disappear, which 11 is a bug, but can be avoided in this testcase. 12 13 * platform/chromium/test_expectations.txt: Unskip test. 14 * svg/text/resources/SelectionTestCase.js: 15 (selectRange): Subtract -1 from absEndPos.x. 16 1 17 2012-01-19 Csaba Osztrogonác <ossy@webkit.org> 2 18 -
trunk/LayoutTests/platform/chromium/test_expectations.txt
r105392 r105401 3857 3857 BUGWK76562 : fast/canvas/webgl/drawingbuffer-test.html = TEXT 3858 3858 3859 BUGWK76446 : svg/text/select-x-list-4.svg = IMAGE+TEXT3860 3861 3859 // This test is passing, but it doesn't seem possible to add GPU+Leopard specific baselines. 3862 3860 BUGJAMESR LEOPARD GPU : fast/canvas/quadraticCurveTo.xml = IMAGE -
trunk/LayoutTests/svg/text/resources/SelectionTestCase.js
r83710 r105401 67 67 var absStartPos = toAbsoluteCoordinates(startPos, element); 68 68 var absEndPos = toAbsoluteCoordinates(endPos, element); 69 absEndPos.x -= 1; 69 70 70 71 // Move to selection origin and hold down mouse
Note:
See TracChangeset
for help on using the changeset viewer.