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

Side by Side Diff: LayoutTests/fast/dom/Element/getClientRects.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 #base { 3 #base {
4 width: 300px; 4 width: 300px;
5 height: 100px; 5 height: 100px;
6 } 6 }
7 7
8 #border { 8 #border {
9 border: 10px solid #999; 9 border: 10px solid #999;
10 width: 300px; 10 width: 300px;
11 height: 100px; 11 height: 100px;
12 } 12 }
13 13
14 #margin { 14 #margin {
15 margin: 10px; 15 margin: 10px;
16 width: 300px; 16 width: 300px;
17 height: 100px; 17 height: 100px;
18 } 18 }
19 19
20 #transform { 20 #transform {
21 -webkit-transform: translateX(50px) rotate(45deg); 21 transform: translateX(50px) rotate(45deg);
22 width: 100px; 22 width: 100px;
23 height: 100px; 23 height: 100px;
24 } 24 }
25 25
26 #columns { 26 #columns {
27 -webkit-column-count: 3; 27 -webkit-column-count: 3;
28 width: 300px; 28 width: 300px;
29 } 29 }
30 30
31 #inline { 31 #inline {
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 156
157 var tests = document.getElementsByClassName("testBox"); 157 var tests = document.getElementsByClassName("testBox");
158 for (var i = 0; i < tests.length; ++i) 158 for (var i = 0; i < tests.length; ++i)
159 test(i + 1, tests[i]); 159 test(i + 1, tests[i]);
160 160
161 if (window.testRunner) { 161 if (window.testRunner) {
162 var area = document.getElementById('testArea'); 162 var area = document.getElementById('testArea');
163 area.parentNode.removeChild(area); 163 area.parentNode.removeChild(area);
164 } 164 }
165 </script> 165 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/Element/getBoundingClientRect.html ('k') | LayoutTests/fast/dom/Range/getBoundingClientRect.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698