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

Side by Side Diff: LayoutTests/fast/dom/resources/wrapper-identity-base.js

Issue 14705009: Remove RangeException interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update expectation Created 7 years, 7 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 | Annotate | Revision Log
OLDNEW
1 // We use a static list of window properties to avoid breaking when new properti es are added. 1 // We use a static list of window properties to avoid breaking when new properti es are added.
2 var staticWindowProperties = [ 2 var staticWindowProperties = [
3 'CSSPrimitiveValue', 3 'CSSPrimitiveValue',
4 'CSSRule', 4 'CSSRule',
5 'CSSStyleDeclaration', 5 'CSSStyleDeclaration',
6 'CSSValue', 6 'CSSValue',
7 'CSSCharsetRule', 7 'CSSCharsetRule',
8 'CSSImportRule', 8 'CSSImportRule',
9 'CSSMediaRule', 9 'CSSMediaRule',
10 'CSSFontFaceRule', 10 'CSSFontFaceRule',
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 'HTMLTextAreaElement', 63 'HTMLTextAreaElement',
64 'HTMLTitleElement', 64 'HTMLTitleElement',
65 'HTMLUListElement', 65 'HTMLUListElement',
66 'Image', 66 'Image',
67 'MutationEvent', 67 'MutationEvent',
68 'Node', 68 'Node',
69 'NodeFilter', 69 'NodeFilter',
70 'Option', 70 'Option',
71 'Range', 71 'Range',
72 'RangeError', 72 'RangeError',
73 'RangeException',
74 'ReferenceError', 73 'ReferenceError',
75 'SyntaxError', 74 'SyntaxError',
76 'TypeError', 75 'TypeError',
77 'URIError', 76 'URIError',
78 'XMLDocument', 77 'XMLDocument',
79 'XMLHttpRequest', 78 'XMLHttpRequest',
80 'XMLSerializer', 79 'XMLSerializer',
81 'XPathEvaluator', 80 'XPathEvaluator',
82 'XPathResult', 81 'XPathResult',
83 'XSLTProcessor', 82 'XSLTProcessor',
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 181
183 function testJS(s) 182 function testJS(s)
184 { 183 {
185 shouldBeTrue("var object = " + s + "; isEqualJS(object, object);"); 184 shouldBeTrue("var object = " + s + "; isEqualJS(object, object);");
186 } 185 }
187 186
188 function testObjC(s) 187 function testObjC(s)
189 { 188 {
190 shouldBeTrue("var object = " + s + "; isEqualObjC(object, object);"); 189 shouldBeTrue("var object = " + s + "; isEqualObjC(object, object);");
191 } 190 }
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/Window/window-property-shadowing-expected.txt ('k') | LayoutTests/fast/dom/wrapper-identity-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698