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

Side by Side Diff: LayoutTests/fast/dom/Range/range-detached-exceptions.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../js/resources/js-test-pre.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <!-- hidden area to create the ranges being tested --> 7 <!-- hidden area to create the ranges being tested -->
8 <div style="visibility: hidden"> 8 <div style="visibility: hidden">
9 <div id=a1>a1 9 <div id=a1>a1
10 <div id=b1>b1</div> 10 <div id=b1>b1</div>
(...skipping 28 matching lines...) Expand all
39 shouldThrow("range.selectNode(document.getElementById('b1'))", message(" selectNode")); 39 shouldThrow("range.selectNode(document.getElementById('b1'))", message(" selectNode"));
40 shouldThrow("range.selectNodeContents(document.getElementById('b1'))", m essage("selectNodeContents")); 40 shouldThrow("range.selectNodeContents(document.getElementById('b1'))", m essage("selectNodeContents"));
41 shouldThrow("range.setEnd(document.getElementById('b1'))", message("setE nd")); 41 shouldThrow("range.setEnd(document.getElementById('b1'))", message("setE nd"));
42 shouldThrow("range.setStart(document.getElementById('b1'))", message("se tStart")); 42 shouldThrow("range.setStart(document.getElementById('b1'))", message("se tStart"));
43 shouldThrow("range.startContainer()", message("startContainer")); 43 shouldThrow("range.startContainer()", message("startContainer"));
44 shouldThrow("range.startContainer()", message("startContainer")); 44 shouldThrow("range.startContainer()", message("startContainer"));
45 shouldThrow("range.startOffset()", message("startOffset")); 45 shouldThrow("range.startOffset()", message("startOffset"));
46 shouldThrow("range.surroundContents(document.getElementById('b1'))", mes sage("surroundContents")); 46 shouldThrow("range.surroundContents(document.getElementById('b1'))", mes sage("surroundContents"));
47 shouldThrow("range.toString()", message("toString")); 47 shouldThrow("range.toString()", message("toString"));
48 </script> 48 </script>
49 <script src="../../js/resources/js-test-post.js"></script>
50 </body> 49 </body>
51 </html> 50 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/Range/range-created-during-remove-children.html ('k') | LayoutTests/fast/dom/Range/range-exceptions.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698