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

Side by Side Diff: LayoutTests/fast/dom/wrapper-classes.html

Issue 959643002: Remove the overflowchanged event with a runtime flag (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: tests Created 5 years, 10 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 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../resources/js-test.js"></script> 3 <script src="../../resources/js-test.js"></script>
4 <style id="style" media="screen"> 4 <style id="style" media="screen">
5 .non-existent-class { 5 .non-existent-class {
6 color: rgb(0, 0, 0); 6 color: rgb(0, 0, 0);
7 } 7 }
8 </style> 8 </style>
9 </head> 9 </head>
10 <body> 10 <body>
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 test("xmlDocument.createProcessingInstruction('x', '')", "ProcessingInstruct ion"); 97 test("xmlDocument.createProcessingInstruction('x', '')", "ProcessingInstruct ion");
98 98
99 debug(''); 99 debug('');
100 debug('Events'); 100 debug('Events');
101 debug(''); 101 debug('');
102 102
103 test("document.createEvent('Event')", "Event"); 103 test("document.createEvent('Event')", "Event");
104 test("document.createEvent('KeyboardEvent')", "KeyboardEvent"); 104 test("document.createEvent('KeyboardEvent')", "KeyboardEvent");
105 test("document.createEvent('MouseEvent')", "MouseEvent"); 105 test("document.createEvent('MouseEvent')", "MouseEvent");
106 test("document.createEvent('MutationEvent')", "MutationEvent"); 106 test("document.createEvent('MutationEvent')", "MutationEvent");
107 test("document.createEvent('OverflowEvent')", "OverflowEvent");
108 test("document.createEvent('TextEvent')", "TextEvent"); 107 test("document.createEvent('TextEvent')", "TextEvent");
109 test("document.createEvent('UIEvent')", "UIEvent"); 108 test("document.createEvent('UIEvent')", "UIEvent");
110 test("document.createEvent('WheelEvent')", "WheelEvent"); 109 test("document.createEvent('WheelEvent')", "WheelEvent");
111 110
112 debug(''); 111 debug('');
113 debug('CSS DOM'); 112 debug('CSS DOM');
114 debug(''); 113 debug('');
115 114
116 test("document.styleSheets", "StyleSheetList"); 115 test("document.styleSheets", "StyleSheetList");
117 test("stylesheet", "CSSStyleSheet"); 116 test("stylesheet", "CSSStyleSheet");
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 286
288 function frameLoaded() 287 function frameLoaded()
289 { 288 {
290 runTest(); 289 runTest();
291 } 290 }
292 291
293 </script> 292 </script>
294 <iframe id="xmlframe" onload="frameLoaded()" style="height:0px" src="data:applic ation/xhtml+xml,<?xml version='1.0' encoding='UTF-8'?><body/>"></iframe> 293 <iframe id="xmlframe" onload="frameLoaded()" style="height:0px" src="data:applic ation/xhtml+xml,<?xml version='1.0' encoding='UTF-8'?><body/>"></iframe>
295 </body> 294 </body>
296 </html> 295 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/Window/window-lookup-precedence-expected.txt ('k') | LayoutTests/fast/dom/wrapper-classes-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698