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

Side by Side Diff: LayoutTests/fast/dom/Range/getBoundingClientRect.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 body { 3 body {
4 font: 16px Ahem; 4 font: 16px Ahem;
5 } 5 }
6 6
7 .bbox { 7 .bbox {
8 position:absolute; 8 position:absolute;
9 outline: 5px solid rgba(255, 0, 0, .75); 9 outline: 5px solid rgba(255, 0, 0, .75);
10 z-index: -1; 10 z-index: -1;
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 debug("Test 6") 160 debug("Test 6")
161 var range6 = document.createRange(); 161 var range6 = document.createRange();
162 rect = range6.getBoundingClientRect() 162 rect = range6.getBoundingClientRect()
163 testClientRect(rect, expectedResults[6 - 1]); 163 testClientRect(rect, expectedResults[6 - 1]);
164 164
165 if (window.testRunner) { 165 if (window.testRunner) {
166 var area = document.getElementById('testArea'); 166 var area = document.getElementById('testArea');
167 area.parentNode.removeChild(area); 167 area.parentNode.removeChild(area);
168 } 168 }
169 </script> 169 </script>
170 <script src="../../js/resources/js-test-post.js"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698