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

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

Issue 387263003: Adopt unsigned long constant type into DOM (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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
« no previous file with comments | « LayoutTests/fast/dom/constants.html ('k') | Source/bindings/core/v8/V8DOMConfiguration.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 This page tests CSSRule, CSSValue, NodeFilter, and Event. It tests: 1 This page tests CSSRule, CSSValue, 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.UNKNOWN_RULE should be 0 and is. 5 PASS: cssRule.UNKNOWN_RULE should be 0 and is.
6 PASS: cssRule.STYLE_RULE should be 1 and is. 6 PASS: cssRule.STYLE_RULE should be 1 and is.
7 PASS: cssRule.CHARSET_RULE should be 2 and is. 7 PASS: cssRule.CHARSET_RULE should be 2 and is.
8 PASS: cssRule.IMPORT_RULE should be 3 and is. 8 PASS: cssRule.IMPORT_RULE should be 3 and is.
9 PASS: cssRule.MEDIA_RULE should be 4 and is. 9 PASS: cssRule.MEDIA_RULE should be 4 and is.
10 PASS: cssRule.FONT_FACE_RULE should be 5 and is. 10 PASS: cssRule.FONT_FACE_RULE should be 5 and is.
11 PASS: cssRule.PAGE_RULE should be 6 and is. 11 PASS: cssRule.PAGE_RULE should be 6 and is.
12 PASS: window.CSSRule.UNKNOWN_RULE should be 0 and is. 12 PASS: window.CSSRule.UNKNOWN_RULE should be 0 and is.
13 PASS: window.CSSRule.STYLE_RULE should be 1 and is. 13 PASS: window.CSSRule.STYLE_RULE should be 1 and is.
14 PASS: window.CSSRule.CHARSET_RULE should be 2 and is. 14 PASS: window.CSSRule.CHARSET_RULE should be 2 and is.
15 PASS: window.CSSRule.IMPORT_RULE should be 3 and is. 15 PASS: window.CSSRule.IMPORT_RULE should be 3 and is.
16 PASS: window.CSSRule.MEDIA_RULE should be 4 and is. 16 PASS: window.CSSRule.MEDIA_RULE should be 4 and is.
17 PASS: window.CSSRule.FONT_FACE_RULE should be 5 and is. 17 PASS: window.CSSRule.FONT_FACE_RULE should be 5 and is.
18 PASS: window.CSSRule.PAGE_RULE should be 6 and is. 18 PASS: window.CSSRule.PAGE_RULE should be 6 and is.
19 PASS: cssValue.CSS_INHERIT should be 0 and is. 19 PASS: cssValue.CSS_INHERIT should be 0 and is.
20 PASS: cssValue.CSS_PRIMITIVE_VALUE should be 1 and is. 20 PASS: cssValue.CSS_PRIMITIVE_VALUE should be 1 and is.
21 PASS: cssValue.CSS_VALUE_LIST should be 2 and is. 21 PASS: cssValue.CSS_VALUE_LIST should be 2 and is.
22 PASS: cssValue.CSS_CUSTOM should be 3 and is. 22 PASS: cssValue.CSS_CUSTOM should be 3 and is.
23 PASS: window.CSSValue.CSS_INHERIT should be 0 and is. 23 PASS: window.CSSValue.CSS_INHERIT should be 0 and is.
24 PASS: window.CSSValue.CSS_PRIMITIVE_VALUE should be 1 and is. 24 PASS: window.CSSValue.CSS_PRIMITIVE_VALUE should be 1 and is.
25 PASS: window.CSSValue.CSS_VALUE_LIST should be 2 and is. 25 PASS: window.CSSValue.CSS_VALUE_LIST should be 2 and is.
26 PASS: window.CSSValue.CSS_CUSTOM should be 3 and is. 26 PASS: window.CSSValue.CSS_CUSTOM should be 3 and is.
27 PASS: nodeFilter.FILTER_ACCEPT should be 1 and is. 27 PASS: nodeFilter.FILTER_ACCEPT should be 1 and is.
28 PASS: nodeFilter.FILTER_REJECT should be 2 and is. 28 PASS: nodeFilter.FILTER_REJECT should be 2 and is.
29 PASS: nodeFilter.FILTER_SKIP should be 3 and is. 29 PASS: nodeFilter.FILTER_SKIP should be 3 and is.
30 PASS: nodeFilter.SHOW_ALL should be -1 and is. 30 PASS: nodeFilter.SHOW_ALL should be 4294967295 and is.
31 PASS: nodeFilter.SHOW_ELEMENT should be 1 and is. 31 PASS: nodeFilter.SHOW_ELEMENT should be 1 and is.
32 PASS: nodeFilter.SHOW_ATTRIBUTE should be 2 and is. 32 PASS: nodeFilter.SHOW_ATTRIBUTE should be 2 and is.
33 PASS: nodeFilter.SHOW_TEXT should be 4 and is. 33 PASS: nodeFilter.SHOW_TEXT should be 4 and is.
34 PASS: nodeFilter.SHOW_CDATA_SECTION should be 8 and is. 34 PASS: nodeFilter.SHOW_CDATA_SECTION should be 8 and is.
35 PASS: nodeFilter.SHOW_ENTITY_REFERENCE should be 16 and is. 35 PASS: nodeFilter.SHOW_ENTITY_REFERENCE should be 16 and is.
36 PASS: nodeFilter.SHOW_ENTITY should be 32 and is. 36 PASS: nodeFilter.SHOW_ENTITY should be 32 and is.
37 PASS: nodeFilter.SHOW_PROCESSING_INSTRUCTION should be 64 and is. 37 PASS: nodeFilter.SHOW_PROCESSING_INSTRUCTION should be 64 and is.
38 PASS: nodeFilter.SHOW_COMMENT should be 128 and is. 38 PASS: nodeFilter.SHOW_COMMENT should be 128 and is.
39 PASS: nodeFilter.SHOW_DOCUMENT should be 256 and is. 39 PASS: nodeFilter.SHOW_DOCUMENT should be 256 and is.
40 PASS: nodeFilter.SHOW_DOCUMENT_TYPE should be 512 and is. 40 PASS: nodeFilter.SHOW_DOCUMENT_TYPE should be 512 and is.
41 PASS: nodeFilter.SHOW_DOCUMENT_FRAGMENT should be 1024 and is. 41 PASS: nodeFilter.SHOW_DOCUMENT_FRAGMENT should be 1024 and is.
42 PASS: nodeFilter.SHOW_NOTATION should be 2048 and is. 42 PASS: nodeFilter.SHOW_NOTATION should be 2048 and is.
43 PASS: window.NodeFilter.FILTER_ACCEPT should be 1 and is. 43 PASS: window.NodeFilter.FILTER_ACCEPT should be 1 and is.
44 PASS: window.NodeFilter.FILTER_REJECT should be 2 and is. 44 PASS: window.NodeFilter.FILTER_REJECT should be 2 and is.
45 PASS: window.NodeFilter.FILTER_SKIP should be 3 and is. 45 PASS: window.NodeFilter.FILTER_SKIP should be 3 and is.
46 PASS: window.NodeFilter.SHOW_ALL should be -1 and is. 46 PASS: window.NodeFilter.SHOW_ALL should be 4294967295 and is.
47 PASS: window.NodeFilter.SHOW_ELEMENT should be 1 and is. 47 PASS: window.NodeFilter.SHOW_ELEMENT should be 1 and is.
48 PASS: window.NodeFilter.SHOW_ATTRIBUTE should be 2 and is. 48 PASS: window.NodeFilter.SHOW_ATTRIBUTE should be 2 and is.
49 PASS: window.NodeFilter.SHOW_TEXT should be 4 and is. 49 PASS: window.NodeFilter.SHOW_TEXT should be 4 and is.
50 PASS: window.NodeFilter.SHOW_CDATA_SECTION should be 8 and is. 50 PASS: window.NodeFilter.SHOW_CDATA_SECTION should be 8 and is.
51 PASS: window.NodeFilter.SHOW_ENTITY_REFERENCE should be 16 and is. 51 PASS: window.NodeFilter.SHOW_ENTITY_REFERENCE should be 16 and is.
52 PASS: window.NodeFilter.SHOW_ENTITY should be 32 and is. 52 PASS: window.NodeFilter.SHOW_ENTITY should be 32 and is.
53 PASS: window.NodeFilter.SHOW_PROCESSING_INSTRUCTION should be 64 and is. 53 PASS: window.NodeFilter.SHOW_PROCESSING_INSTRUCTION should be 64 and is.
54 PASS: window.NodeFilter.SHOW_COMMENT should be 128 and is. 54 PASS: window.NodeFilter.SHOW_COMMENT should be 128 and is.
55 PASS: window.NodeFilter.SHOW_DOCUMENT should be 256 and is. 55 PASS: window.NodeFilter.SHOW_DOCUMENT should be 256 and is.
56 PASS: window.NodeFilter.SHOW_DOCUMENT_TYPE should be 512 and is. 56 PASS: window.NodeFilter.SHOW_DOCUMENT_TYPE should be 512 and is.
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 PASS: window.Event.CLICK should be 64 and is. 89 PASS: window.Event.CLICK should be 64 and is.
90 PASS: window.Event.DBLCLICK should be 128 and is. 90 PASS: window.Event.DBLCLICK should be 128 and is.
91 PASS: window.Event.KEYDOWN should be 256 and is. 91 PASS: window.Event.KEYDOWN should be 256 and is.
92 PASS: window.Event.KEYUP should be 512 and is. 92 PASS: window.Event.KEYUP should be 512 and is.
93 PASS: window.Event.KEYPRESS should be 1024 and is. 93 PASS: window.Event.KEYPRESS should be 1024 and is.
94 PASS: window.Event.DRAGDROP should be 2048 and is. 94 PASS: window.Event.DRAGDROP should be 2048 and is.
95 PASS: window.Event.FOCUS should be 4096 and is. 95 PASS: window.Event.FOCUS should be 4096 and is.
96 PASS: window.Event.BLUR should be 8192 and is. 96 PASS: window.Event.BLUR should be 8192 and is.
97 PASS: window.Event.SELECT should be 16384 and is. 97 PASS: window.Event.SELECT should be 16384 and is.
98 PASS: window.Event.CHANGE should be 32768 and is. 98 PASS: window.Event.CHANGE should be 32768 and is.
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/constants.html ('k') | Source/bindings/core/v8/V8DOMConfiguration.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698