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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/constants-expected.txt

Issue 2579693005: Remove legacy constants on Event (Closed)
Patch Set: update newly imported wpt/dom/historical.html Created 3 years, 12 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 page tests CSSRule, NodeFilter, and Event. It tests: 1 This page tests CSSRule, NodeFilter, and Event. It tests:
2 2
3 Whether their global constructors have the correct constant values 3 Whether their global constructors have the correct constant values
4 Whether their objects have the correct constant values 4 Whether their objects have the correct constant values
5 PASS: cssRule.STYLE_RULE should be 1 and is. 5 PASS: cssRule.STYLE_RULE should be 1 and is.
6 PASS: cssRule.CHARSET_RULE should be 2 and is. 6 PASS: cssRule.CHARSET_RULE should be 2 and is.
7 PASS: cssRule.IMPORT_RULE should be 3 and is. 7 PASS: cssRule.IMPORT_RULE should be 3 and is.
8 PASS: cssRule.MEDIA_RULE should be 4 and is. 8 PASS: cssRule.MEDIA_RULE should be 4 and is.
9 PASS: cssRule.FONT_FACE_RULE should be 5 and is. 9 PASS: cssRule.FONT_FACE_RULE should be 5 and is.
10 PASS: cssRule.PAGE_RULE should be 6 and is. 10 PASS: cssRule.PAGE_RULE should be 6 and is.
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 PASS: window.NodeFilter.SHOW_PROCESSING_INSTRUCTION should be 64 and is. 43 PASS: window.NodeFilter.SHOW_PROCESSING_INSTRUCTION should be 64 and is.
44 PASS: window.NodeFilter.SHOW_COMMENT should be 128 and is. 44 PASS: window.NodeFilter.SHOW_COMMENT should be 128 and is.
45 PASS: window.NodeFilter.SHOW_DOCUMENT should be 256 and is. 45 PASS: window.NodeFilter.SHOW_DOCUMENT should be 256 and is.
46 PASS: window.NodeFilter.SHOW_DOCUMENT_TYPE should be 512 and is. 46 PASS: window.NodeFilter.SHOW_DOCUMENT_TYPE should be 512 and is.
47 PASS: window.NodeFilter.SHOW_DOCUMENT_FRAGMENT should be 1024 and is. 47 PASS: window.NodeFilter.SHOW_DOCUMENT_FRAGMENT should be 1024 and is.
48 PASS: window.NodeFilter.SHOW_NOTATION should be 2048 and is. 48 PASS: window.NodeFilter.SHOW_NOTATION should be 2048 and is.
49 PASS: event.NONE should be 0 and is. 49 PASS: event.NONE should be 0 and is.
50 PASS: event.CAPTURING_PHASE should be 1 and is. 50 PASS: event.CAPTURING_PHASE should be 1 and is.
51 PASS: event.AT_TARGET should be 2 and is. 51 PASS: event.AT_TARGET should be 2 and is.
52 PASS: event.BUBBLING_PHASE should be 3 and is. 52 PASS: event.BUBBLING_PHASE should be 3 and is.
53 PASS: event.MOUSEDOWN should be 1 and is.
54 PASS: event.MOUSEUP should be 2 and is.
55 PASS: event.MOUSEOVER should be 4 and is.
56 PASS: event.MOUSEOUT should be 8 and is.
57 PASS: event.MOUSEMOVE should be 16 and is.
58 PASS: event.MOUSEDRAG should be 32 and is.
59 PASS: event.CLICK should be 64 and is.
60 PASS: event.DBLCLICK should be 128 and is.
61 PASS: event.KEYDOWN should be 256 and is.
62 PASS: event.KEYUP should be 512 and is.
63 PASS: event.KEYPRESS should be 1024 and is.
64 PASS: event.DRAGDROP should be 2048 and is.
65 PASS: event.FOCUS should be 4096 and is.
66 PASS: event.BLUR should be 8192 and is.
67 PASS: event.SELECT should be 16384 and is.
68 PASS: event.CHANGE should be 32768 and is.
69 PASS: window.Event.NONE should be 0 and is. 53 PASS: window.Event.NONE should be 0 and is.
70 PASS: window.Event.CAPTURING_PHASE should be 1 and is. 54 PASS: window.Event.CAPTURING_PHASE should be 1 and is.
71 PASS: window.Event.AT_TARGET should be 2 and is. 55 PASS: window.Event.AT_TARGET should be 2 and is.
72 PASS: window.Event.BUBBLING_PHASE should be 3 and is. 56 PASS: window.Event.BUBBLING_PHASE should be 3 and is.
73 PASS: window.Event.MOUSEDOWN should be 1 and is.
74 PASS: window.Event.MOUSEUP should be 2 and is.
75 PASS: window.Event.MOUSEOVER should be 4 and is.
76 PASS: window.Event.MOUSEOUT should be 8 and is.
77 PASS: window.Event.MOUSEMOVE should be 16 and is.
78 PASS: window.Event.MOUSEDRAG should be 32 and is.
79 PASS: window.Event.CLICK should be 64 and is.
80 PASS: window.Event.DBLCLICK should be 128 and is.
81 PASS: window.Event.KEYDOWN should be 256 and is.
82 PASS: window.Event.KEYUP should be 512 and is.
83 PASS: window.Event.KEYPRESS should be 1024 and is.
84 PASS: window.Event.DRAGDROP should be 2048 and is.
85 PASS: window.Event.FOCUS should be 4096 and is.
86 PASS: window.Event.BLUR should be 8192 and is.
87 PASS: window.Event.SELECT should be 16384 and is.
88 PASS: window.Event.CHANGE should be 32768 and is.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698