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

Side by Side Diff: LayoutTests/fast/dom/Window/window-property-shadowing.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script type="text/javascript"> 4 <script type="text/javascript">
5 function log(msg) 5 function log(msg)
6 { 6 {
7 document.getElementById('console').appendChild(document.createTextNo de(msg + '\n')); 7 document.getElementById('console').appendChild(document.createTextNo de(msg + '\n'));
8 } 8 }
9 </script> 9 </script>
10 </head> 10 </head>
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 var DocumentType = 1; 194 var DocumentType = 1;
195 log(DocumentType == 1 ? "PASS: DocumentType successfully shadowed" : "FA IL: DocumentType was not shadowed"); 195 log(DocumentType == 1 ? "PASS: DocumentType successfully shadowed" : "FA IL: DocumentType was not shadowed");
196 var ProcessingInstruction = 1; 196 var ProcessingInstruction = 1;
197 log(ProcessingInstruction == 1 ? "PASS: ProcessingInstruction successful ly shadowed" : "FAIL: ProcessingInstruction was not shadowed"); 197 log(ProcessingInstruction == 1 ? "PASS: ProcessingInstruction successful ly shadowed" : "FAIL: ProcessingInstruction was not shadowed");
198 var HTMLDocument = 1; 198 var HTMLDocument = 1;
199 log(HTMLDocument == 1 ? "PASS: HTMLDocument successfully shadowed" : "FA IL: HTMLDocument was not shadowed"); 199 log(HTMLDocument == 1 ? "PASS: HTMLDocument successfully shadowed" : "FA IL: HTMLDocument was not shadowed");
200 var HTMLElement = 1; 200 var HTMLElement = 1;
201 log(HTMLElement == 1 ? "PASS: HTMLElement successfully shadowed" : "FAIL : HTMLElement was not shadowed"); 201 log(HTMLElement == 1 ? "PASS: HTMLElement successfully shadowed" : "FAIL : HTMLElement was not shadowed");
202 var HTMLAnchorElement = 1; 202 var HTMLAnchorElement = 1;
203 log(HTMLAnchorElement == 1 ? "PASS: HTMLAnchorElement successfully shado wed" : "FAIL: HTMLAnchorElement was not shadowed"); 203 log(HTMLAnchorElement == 1 ? "PASS: HTMLAnchorElement successfully shado wed" : "FAIL: HTMLAnchorElement was not shadowed");
204 var HTMLAppletElement = 1;
205 log(HTMLAppletElement == 1 ? "PASS: HTMLAppletElement successfully shado wed" : "FAIL: HTMLAppletElement was not shadowed");
206 var HTMLAreaElement = 1; 204 var HTMLAreaElement = 1;
207 log(HTMLAreaElement == 1 ? "PASS: HTMLAreaElement successfully shadowed" : "FAIL: HTMLAreaElement was not shadowed"); 205 log(HTMLAreaElement == 1 ? "PASS: HTMLAreaElement successfully shadowed" : "FAIL: HTMLAreaElement was not shadowed");
208 var HTMLBRElement = 1; 206 var HTMLBRElement = 1;
209 log(HTMLBRElement == 1 ? "PASS: HTMLBRElement successfully shadowed" : " FAIL: HTMLBRElement was not shadowed"); 207 log(HTMLBRElement == 1 ? "PASS: HTMLBRElement successfully shadowed" : " FAIL: HTMLBRElement was not shadowed");
210 var HTMLBaseElement = 1; 208 var HTMLBaseElement = 1;
211 log(HTMLBaseElement == 1 ? "PASS: HTMLBaseElement successfully shadowed" : "FAIL: HTMLBaseElement was not shadowed"); 209 log(HTMLBaseElement == 1 ? "PASS: HTMLBaseElement successfully shadowed" : "FAIL: HTMLBaseElement was not shadowed");
212 var HTMLBlockquoteElement = 1; 210 var HTMLBlockquoteElement = 1;
213 log(HTMLBlockquoteElement == 1 ? "PASS: HTMLBlockquoteElement successful ly shadowed" : "FAIL: HTMLBlockquoteElement was not shadowed"); 211 log(HTMLBlockquoteElement == 1 ? "PASS: HTMLBlockquoteElement successful ly shadowed" : "FAIL: HTMLBlockquoteElement was not shadowed");
214 var HTMLBodyElement = 1; 212 var HTMLBodyElement = 1;
215 log(HTMLBodyElement == 1 ? "PASS: HTMLBodyElement successfully shadowed" : "FAIL: HTMLBodyElement was not shadowed"); 213 log(HTMLBodyElement == 1 ? "PASS: HTMLBodyElement successfully shadowed" : "FAIL: HTMLBodyElement was not shadowed");
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 log(Range == 1 ? "PASS: Range successfully shadowed" : "FAIL: Range was not shadowed"); 317 log(Range == 1 ? "PASS: Range successfully shadowed" : "FAIL: Range was not shadowed");
320 var XMLDocument = 1; 318 var XMLDocument = 1;
321 log(XMLDocument == 1 ? "PASS: XMLDocument successfully shadowed" : "FAIL : XMLDocument was not shadowed"); 319 log(XMLDocument == 1 ? "PASS: XMLDocument successfully shadowed" : "FAIL : XMLDocument was not shadowed");
322 var DOMParser = 1; 320 var DOMParser = 1;
323 log(DOMParser == 1 ? "PASS: DOMParser successfully shadowed" : "FAIL: DO MParser was not shadowed"); 321 log(DOMParser == 1 ? "PASS: DOMParser successfully shadowed" : "FAIL: DO MParser was not shadowed");
324 var XMLSerializer = 1; 322 var XMLSerializer = 1;
325 log(XMLSerializer == 1 ? "PASS: XMLSerializer successfully shadowed" : " FAIL: XMLSerializer was not shadowed"); 323 log(XMLSerializer == 1 ? "PASS: XMLSerializer successfully shadowed" : " FAIL: XMLSerializer was not shadowed");
326 </script> 324 </script>
327 </body> 325 </body>
328 </html> 326 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698