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

Side by Side Diff: LayoutTests/fast/inspector-support/uncaught-dom3-exception.html

Issue 106773003: Make arguments to Document methods non-optional (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years 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> 3 <script>
4 4
5 function onload() 5 function onload()
6 { 6 {
7 if (window.testRunner) 7 if (window.testRunner)
8 testRunner.dumpAsText(); 8 testRunner.dumpAsText();
9 document.appendChild(document.createElement()); 9 document.appendChild(document.createElement('x'));
10 } 10 }
11 11
12 </script> 12 </script>
13 </head> 13 </head>
14 14
15 <body onload="onload()"> 15 <body onload="onload()">
16 <p> 16 <p>
17 This tests that we are getting the correct message for DOM Exception 3: HIERARCH Y_REQUEST_ERR. 17 This tests that we are getting the correct message for DOM Exception 3: HIERARCH Y_REQUEST_ERR.
18 </p> 18 </p>
19 19
20 </body> 20 </body>
21 </html> 21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698