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

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

Issue 1291723004: Remove all support for <applet> handling in Chrome. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 5 years, 3 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 test("document.createElement('select').options", "HTMLOptionsCollection"); 141 test("document.createElement('select').options", "HTMLOptionsCollection");
142 142
143 debug(''); 143 debug('');
144 debug('HTML Elements'); 144 debug('HTML Elements');
145 debug(''); 145 debug('');
146 146
147 testTag("a", "HTMLAnchorElement"); 147 testTag("a", "HTMLAnchorElement");
148 testTag("abbr", "HTMLElement"); 148 testTag("abbr", "HTMLElement");
149 testTag("acronym", "HTMLElement"); 149 testTag("acronym", "HTMLElement");
150 testTag("address", "HTMLElement"); 150 testTag("address", "HTMLElement");
151 testTag("applet", "HTMLAppletElement");
152 testTag("area", "HTMLAreaElement"); 151 testTag("area", "HTMLAreaElement");
153 testTag("article", "HTMLElement"); 152 testTag("article", "HTMLElement");
154 testTag("aside", "HTMLElement"); 153 testTag("aside", "HTMLElement");
155 testTag("b", "HTMLElement"); 154 testTag("b", "HTMLElement");
156 testTag("base", "HTMLBaseElement"); 155 testTag("base", "HTMLBaseElement");
157 testTag("basefont", "HTMLElement"); 156 testTag("basefont", "HTMLElement");
158 testTag("bdo", "HTMLElement"); 157 testTag("bdo", "HTMLElement");
159 testTag("bgsound", "HTMLUnknownElement"); 158 testTag("bgsound", "HTMLUnknownElement");
160 testTag("big", "HTMLElement"); 159 testTag("big", "HTMLElement");
161 testTag("blockquote", "HTMLQuoteElement"); 160 testTag("blockquote", "HTMLQuoteElement");
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 285
287 function frameLoaded() 286 function frameLoaded()
288 { 287 {
289 runTest(); 288 runTest();
290 } 289 }
291 290
292 </script> 291 </script>
293 <iframe id="xmlframe" onload="frameLoaded()" style="height:0px" src="data:applic ation/xhtml+xml,<?xml version='1.0' encoding='UTF-8'?><body/>"></iframe> 292 <iframe id="xmlframe" onload="frameLoaded()" style="height:0px" src="data:applic ation/xhtml+xml,<?xml version='1.0' encoding='UTF-8'?><body/>"></iframe>
294 </body> 293 </body>
295 </html> 294 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698