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

Side by Side Diff: LayoutTests/fast/dom/Element/getBoundingClientRect.html

Issue 1204023002: Deflake tests using ahem font with @font-face. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaseline and fix an svg test Created 5 years, 6 months 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="../../../resources/ahem.js"></script>
1 <script src="../../../resources/js-test.js"></script> 2 <script src="../../../resources/js-test.js"></script>
2 <style> 3 <style>
3 body { 4 body {
4 font: 16px Ahem; 5 font: 16px Ahem;
5 } 6 }
6 7
7 #base { 8 #base {
8 width: 300px; 9 width: 300px;
9 height: 100px; 10 height: 100px;
10 } 11 }
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 165
165 var tests = document.getElementsByClassName("testBox"); 166 var tests = document.getElementsByClassName("testBox");
166 for (var i = 0; i < tests.length; ++i) 167 for (var i = 0; i < tests.length; ++i)
167 test(i + 1, tests[i]); 168 test(i + 1, tests[i]);
168 169
169 if (window.testRunner) { 170 if (window.testRunner) {
170 var area = document.getElementById('testArea'); 171 var area = document.getElementById('testArea');
171 area.parentNode.removeChild(area); 172 area.parentNode.removeChild(area);
172 } 173 }
173 </script> 174 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698