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

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

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
1 <script src="../../../resources/js-test.js"></script> 1 <script src="../../../resources/js-test.js"></script>
2 <style> 2 <style>
3 body { 3 body {
4 font: 16px Ahem; 4 font: 16px Ahem;
5 } 5 }
6 6
7 #base { 7 #base {
8 width: 300px; 8 width: 300px;
9 height: 100px; 9 height: 100px;
10 } 10 }
11 11
12 #border { 12 #border {
13 border: 10px solid #999; 13 border: 10px solid #999;
14 width: 300px; 14 width: 300px;
15 height: 100px; 15 height: 100px;
16 } 16 }
17 17
18 #margin { 18 #margin {
19 margin: 10px; 19 margin: 10px;
20 width: 300px; 20 width: 300px;
21 height: 100px; 21 height: 100px;
22 } 22 }
23 23
24 #transform { 24 #transform {
25 -webkit-transform: translateX(50px) rotate(45deg); 25 transform: translateX(50px) rotate(45deg);
26 width: 100px; 26 width: 100px;
27 height: 100px; 27 height: 100px;
28 } 28 }
29 29
30 #columns { 30 #columns {
31 -webkit-column-count: 3; 31 -webkit-column-count: 3;
32 width: 300px; 32 width: 300px;
33 } 33 }
34 34
35 #inline { 35 #inline {
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 163
164 var tests = document.getElementsByClassName("testBox"); 164 var tests = document.getElementsByClassName("testBox");
165 for (var i = 0; i < tests.length; ++i) 165 for (var i = 0; i < tests.length; ++i)
166 test(i + 1, tests[i]); 166 test(i + 1, tests[i]);
167 167
168 if (window.testRunner) { 168 if (window.testRunner) {
169 var area = document.getElementById('testArea'); 169 var area = document.getElementById('testArea');
170 area.parentNode.removeChild(area); 170 area.parentNode.removeChild(area);
171 } 171 }
172 </script> 172 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698