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

Side by Side Diff: LayoutTests/fast/css/draggable-region-parser-expected.txt

Issue 1274643002: CSSStyleDeclaraction returns empty string (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed changes from imported/csswg-test Created 5 years, 4 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 This tests the parser and serializer for draggable region values. 1 This tests the parser and serializer for draggable region values.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 6
7 PASS parseDraggableRegion('drag') is 'drag' 7 PASS parseDraggableRegion('drag') is 'drag'
8 PASS parseDraggableRegion('no-drag') is 'no-drag' 8 PASS parseDraggableRegion('no-drag') is 'no-drag'
9 9
10 Tests for variations in whitespace that are allowed. 10 Tests for variations in whitespace that are allowed.
11 11
12 PASS parseDraggableRegion(' drag ') is 'drag' 12 PASS parseDraggableRegion(' drag ') is 'drag'
13 PASS parseDraggableRegion(' no-drag ') is 'no-drag' 13 PASS parseDraggableRegion(' no-drag ') is 'no-drag'
14 14
15 Tests for case insensitivity. 15 Tests for case insensitivity.
16 16
17 PASS parseDraggableRegion('Drag') is 'drag' 17 PASS parseDraggableRegion('Drag') is 'drag'
18 PASS parseDraggableRegion('DrAG') is 'drag' 18 PASS parseDraggableRegion('DrAG') is 'drag'
19 PASS parseDraggableRegion('NO-DrAG') is 'no-drag' 19 PASS parseDraggableRegion('NO-DrAG') is 'no-drag'
20 PASS parseDraggableRegion('NO-DRAG') is 'no-drag' 20 PASS parseDraggableRegion('NO-DRAG') is 'no-drag'
21 21
22 Some expected failures. 22 Some expected failures.
23 23
24 PASS parseDraggableRegion('') is null 24 PASS parseDraggableRegion('') is ""
25 PASS parseDraggableRegion(' ') is null 25 PASS parseDraggableRegion(' ') is ""
26 PASS parseDraggableRegion('x') is null 26 PASS parseDraggableRegion('x') is ""
27 PASS parseDraggableRegion('x-') is null 27 PASS parseDraggableRegion('x-') is ""
28 PASS parseDraggableRegion('x()') is null 28 PASS parseDraggableRegion('x()') is ""
29 PASS parseDraggableRegion('x(a)') is null 29 PASS parseDraggableRegion('x(a)') is ""
30 PASS parseDraggableRegion('none x') is null 30 PASS parseDraggableRegion('none x') is ""
31 PASS parseDraggableRegion('none x()') is null 31 PASS parseDraggableRegion('none x()') is ""
32 PASS parseDraggableRegion('none x(a)') is null 32 PASS parseDraggableRegion('none x(a)') is ""
33 33
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