Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(485)

Side by Side Diff: third_party/WebKit/LayoutTests/platform/android/svg/custom/invalid-length-units-expected.txt

Issue 1631013003: Auto-rebaseline for r371288 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 CONSOLE ERROR: Error: Invalid value for <rect> attribute x=" " 1 CONSOLE ERROR: Error: Invalid value for <rect> attribute x=" "
2 CONSOLE ERROR: Error: Invalid value for <rect> attribute x="foo" 2 CONSOLE ERROR: Error: Invalid value for <rect> attribute x="foo"
3 CONSOLE ERROR: Error: Invalid value for <rect> attribute x="10foo" 3 CONSOLE ERROR: Error: Invalid value for <rect> attribute x="10foo"
4 CONSOLE ERROR: Error: Invalid value for <rect> attribute x="px" 4 CONSOLE ERROR: Error: Invalid value for <rect> attribute x="px"
5 CONSOLE ERROR: Error: Invalid value for <rect> attribute x="10 % " 5 CONSOLE ERROR: Error: Invalid value for <rect> attribute x="10 % "
6 CONSOLE ERROR: Error: Invalid value for <rect> attribute x="10 %" 6 CONSOLE ERROR: Error: Invalid value for <rect> attribute x="10 %"
7 CONSOLE ERROR: Error: Invalid value for <rect> attribute x="10 px " 7 CONSOLE ERROR: Error: Invalid value for <rect> attribute x="10 px "
8 CONSOLE ERROR: Error: Invalid value for <rect> attribute x="10 px" 8 CONSOLE ERROR: Error: Invalid value for <rect> attribute x="10 px"
9 Tests handling of invalid SVG length units. 9 Tests handling of invalid SVG length units.
10 10
(...skipping 17 matching lines...) Expand all
28 PASS rect.setAttribute('x', '10ex'); rect.x.baseVal.valueAsString is '10ex' 28 PASS rect.setAttribute('x', '10ex'); rect.x.baseVal.valueAsString is '10ex'
29 PASS rect.setAttribute('x', '10px'); rect.x.baseVal.valueAsString is '10px' 29 PASS rect.setAttribute('x', '10px'); rect.x.baseVal.valueAsString is '10px'
30 PASS rect.setAttribute('x', '10cm'); rect.x.baseVal.valueAsString is '10cm' 30 PASS rect.setAttribute('x', '10cm'); rect.x.baseVal.valueAsString is '10cm'
31 PASS rect.setAttribute('x', '10mm'); rect.x.baseVal.valueAsString is '10mm' 31 PASS rect.setAttribute('x', '10mm'); rect.x.baseVal.valueAsString is '10mm'
32 PASS rect.setAttribute('x', '10pt'); rect.x.baseVal.valueAsString is '10pt' 32 PASS rect.setAttribute('x', '10pt'); rect.x.baseVal.valueAsString is '10pt'
33 PASS rect.setAttribute('x', '10pc'); rect.x.baseVal.valueAsString is '10pc' 33 PASS rect.setAttribute('x', '10pc'); rect.x.baseVal.valueAsString is '10pc'
34 PASS successfullyParsed is true 34 PASS successfullyParsed is true
35 35
36 TEST COMPLETE 36 TEST COMPLETE
37 37
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698