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

Side by Side Diff: LayoutTests/http/tests/security/resources/cross-frame-iframe-for-put-test.html

Issue 491693003: Remove the Notation interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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(s) 5 function log(s)
6 { 6 {
7 document.getElementById("console").appendChild(document.createTextNo de(s + "\n")); 7 document.getElementById("console").appendChild(document.createTextNo de(s + "\n"));
8 } 8 }
9 9
10 function shouldThrow(a) 10 function shouldThrow(a)
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 var HTMLTableColElementOld = window.HTMLTableColElement; 128 var HTMLTableColElementOld = window.HTMLTableColElement;
129 var HTMLTableElementOld = window.HTMLTableElement; 129 var HTMLTableElementOld = window.HTMLTableElement;
130 var HTMLTableRowElementOld = window.HTMLTableRowElement; 130 var HTMLTableRowElementOld = window.HTMLTableRowElement;
131 var HTMLTableSectionElementOld = window.HTMLTableSectionElement; 131 var HTMLTableSectionElementOld = window.HTMLTableSectionElement;
132 var HTMLTextAreaElementOld = window.HTMLTextAreaElement; 132 var HTMLTextAreaElementOld = window.HTMLTextAreaElement;
133 var HTMLTitleElementOld = window.HTMLTitleElement; 133 var HTMLTitleElementOld = window.HTMLTitleElement;
134 var HTMLUListElementOld = window.HTMLUListElement; 134 var HTMLUListElementOld = window.HTMLUListElement;
135 var MutationEventOld = window.MutationEvent; 135 var MutationEventOld = window.MutationEvent;
136 var NodeFilterOld = window.NodeFilter; 136 var NodeFilterOld = window.NodeFilter;
137 var NodeOld = window.Node; 137 var NodeOld = window.Node;
138 var NotationOld = window.Notation;
139 var ProcessingInstructionOld = window.ProcessingInstruction; 138 var ProcessingInstructionOld = window.ProcessingInstruction;
140 var RangeErrorOld = window.RangeError; 139 var RangeErrorOld = window.RangeError;
141 var RangeOld = window.Range; 140 var RangeOld = window.Range;
142 var ReferenceErrorOld = window.ReferenceError; 141 var ReferenceErrorOld = window.ReferenceError;
143 var SyntaxErrorOld = window.SyntaxError; 142 var SyntaxErrorOld = window.SyntaxError;
144 var TextOld = window.Text; 143 var TextOld = window.Text;
145 var TypeErrorOld = window.TypeError; 144 var TypeErrorOld = window.TypeError;
146 var URIErrorOld = window.URIError; 145 var URIErrorOld = window.URIError;
147 var XMLDocumentOld = window.XMLDocument; 146 var XMLDocumentOld = window.XMLDocument;
148 var XMLSerializerOld = window.XMLSerializer; 147 var XMLSerializerOld = window.XMLSerializer;
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 shouldBe("window.HTMLTableColElement", "HTMLTableColElementOld"); 329 shouldBe("window.HTMLTableColElement", "HTMLTableColElementOld");
331 shouldBe("window.HTMLTableElement", "HTMLTableElementOld"); 330 shouldBe("window.HTMLTableElement", "HTMLTableElementOld");
332 shouldBe("window.HTMLTableRowElement", "HTMLTableRowElementOld"); 331 shouldBe("window.HTMLTableRowElement", "HTMLTableRowElementOld");
333 shouldBe("window.HTMLTableSectionElement", "HTMLTableSectionElementO ld"); 332 shouldBe("window.HTMLTableSectionElement", "HTMLTableSectionElementO ld");
334 shouldBe("window.HTMLTextAreaElement", "HTMLTextAreaElementOld"); 333 shouldBe("window.HTMLTextAreaElement", "HTMLTextAreaElementOld");
335 shouldBe("window.HTMLTitleElement", "HTMLTitleElementOld"); 334 shouldBe("window.HTMLTitleElement", "HTMLTitleElementOld");
336 shouldBe("window.HTMLUListElement", "HTMLUListElementOld"); 335 shouldBe("window.HTMLUListElement", "HTMLUListElementOld");
337 shouldBe("window.MutationEvent", "MutationEventOld"); 336 shouldBe("window.MutationEvent", "MutationEventOld");
338 shouldBe("window.Node", "NodeOld"); 337 shouldBe("window.Node", "NodeOld");
339 shouldBe("window.NodeFilter", "NodeFilterOld"); 338 shouldBe("window.NodeFilter", "NodeFilterOld");
340 shouldBe("window.Notation", "NotationOld");
341 shouldBe("window.ProcessingInstruction", "ProcessingInstructionOld") ; 339 shouldBe("window.ProcessingInstruction", "ProcessingInstructionOld") ;
342 shouldBe("window.Range", "RangeOld"); 340 shouldBe("window.Range", "RangeOld");
343 shouldBe("window.RangeError", "RangeErrorOld"); 341 shouldBe("window.RangeError", "RangeErrorOld");
344 shouldBe("window.ReferenceError", "ReferenceErrorOld"); 342 shouldBe("window.ReferenceError", "ReferenceErrorOld");
345 shouldBe("window.SyntaxError", "SyntaxErrorOld"); 343 shouldBe("window.SyntaxError", "SyntaxErrorOld");
346 shouldBe("window.Text", "TextOld"); 344 shouldBe("window.Text", "TextOld");
347 shouldBe("window.TypeError", "TypeErrorOld"); 345 shouldBe("window.TypeError", "TypeErrorOld");
348 shouldBe("window.URIError", "URIErrorOld"); 346 shouldBe("window.URIError", "URIErrorOld");
349 shouldBe("window.XMLDocument", "XMLDocumentOld"); 347 shouldBe("window.XMLDocument", "XMLDocumentOld");
350 shouldBe("window.XMLSerializer", "XMLSerializerOld"); 348 shouldBe("window.XMLSerializer", "XMLSerializerOld");
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 shouldBe("window.setInterval", "setIntervalOld"); 469 shouldBe("window.setInterval", "setIntervalOld");
472 shouldBe("window.setTimeout", "setTimeoutOld"); 470 shouldBe("window.setTimeout", "setTimeoutOld");
473 471
474 // showModalDialog is not implemented on all platforms for DumpRende rTree. So don't display the values. 472 // showModalDialog is not implemented on all platforms for DumpRende rTree. So don't display the values.
475 shouldBe("window.showModalDialog", "showModalDialogOld", true); 473 shouldBe("window.showModalDialog", "showModalDialogOld", true);
476 shouldBe("window.stop", "stopOld"); 474 shouldBe("window.stop", "stopOld");
477 }, 0); 475 }, 0);
478 </script> 476 </script>
479 </body> 477 </body>
480 </html> 478 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698