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

Side by Side Diff: LayoutTests/fast/dom/Range/getClientRects.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 <script src="../../js/resources/js-test-pre.js"></script> 1 <script src="../../js/resources/js-test-pre.js"></script>
2 <style> 2 <style>
3 .bbox { 3 .bbox {
4 position:absolute; 4 position:absolute;
5 outline: 5px solid rgba(255, 0, 0, .75); 5 outline: 5px solid rgba(255, 0, 0, .75);
6 z-index: -1; 6 z-index: -1;
7 } 7 }
8 8
9 .box { 9 .box {
10 width: 400px; 10 width: 400px;
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 debug("Test 11"); 401 debug("Test 11");
402 var range11 = document.createRange(); 402 var range11 = document.createRange();
403 rects = range11.getClientRects(); 403 rects = range11.getClientRects();
404 shouldBe("rects.length", "0"); 404 shouldBe("rects.length", "0");
405 405
406 if (window.testRunner) { 406 if (window.testRunner) {
407 var area = document.getElementById('testArea'); 407 var area = document.getElementById('testArea');
408 area.parentNode.removeChild(area); 408 area.parentNode.removeChild(area);
409 } 409 }
410 </script> 410 </script>
411 <script src="../../js/resources/js-test-post.js"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698