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

Side by Side Diff: LayoutTests/fast/dom/Range/missing-arguments.html

Issue 108063005: Make arguments to Range 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
(Empty)
1 <!doctype html>
2 <html>
3 <head>
4 <script src="../../../resources/js-test.js"></script>
5 </head>
6 <body>
7 <script>
8 var range = document.createRange();
9 var node = document.body;
10 [
11 "compareBoundaryPoints()",
12 "compareBoundaryPoints(0)",
13 "comparePoint()",
14 "comparePoint(node)",
15 "createContextualFragment()",
16 "insertNode()",
17 "intersectsNode()",
18 "isPointInRange()",
19 "isPointInRange(node)",
20 "selectNode()",
21 "selectNodeContents()",
22 "setEnd()",
23 "setEnd(node)",
24 "setEndAfter()",
25 "setEndBefore()",
26 "setStart()",
27 "setStart(node)",
28 "setStartAfter()",
29 "setStartBefore()",
30 "surroundContents()"
31 ].forEach(function(expr)
32 {
33 shouldThrow("range." + expr);
34 });
35 </script>
36 </body>
37 </html>
OLDNEW
« no previous file with comments | « LayoutTests/editing/deleting/delete-uneditable-style.html ('k') | LayoutTests/fast/dom/Range/missing-arguments-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698