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

Side by Side Diff: LayoutTests/transforms/2d/compound-2d-transforms.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 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd"> 2 "http://www.w3.org/TR/html4/loose.dtd">
3 3
4 <html lang="en"> 4 <html lang="en">
5 <head> 5 <head>
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
7 <title>Compound 2D Transforms</title> 7 <title>Compound 2D Transforms</title>
8 <style type="text/css" media="screen"> 8 <style type="text/css" media="screen">
9 .container { 9 .container {
10 height: 100px; 10 height: 100px;
11 width: 200px; 11 width: 200px;
12 margin: 30px; 12 margin: 30px;
13 outline: 1px solid black; 13 outline: 1px solid black;
14 } 14 }
15 .box { 15 .box {
16 height: 100%; 16 height: 100%;
17 width: 100%; 17 width: 100%;
18 background-color: green; 18 background-color: green;
19 -webkit-transform: rotate(90deg); 19 transform: rotate(90deg);
20 } 20 }
21 #results { 21 #results {
22 margin-top: 100px; 22 margin-top: 100px;
23 } 23 }
24 </style> 24 </style>
25 <script src="resources/transform-test-utils.js" type="text/javascript" charset ="utf-8"></script> 25 <script src="resources/transform-test-utils.js" type="text/javascript" charset ="utf-8"></script>
26 <script type="text/javascript" charset="utf-8"> 26 <script type="text/javascript" charset="utf-8">
27 if (window.testRunner) { 27 if (window.testRunner) {
28 testRunner.dumpAsText(); 28 testRunner.dumpAsText();
29 testRunner.waitUntilDone(); 29 testRunner.waitUntilDone();
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 <body onload="runTests()"> 78 <body onload="runTests()">
79 79
80 <div class="container"> 80 <div class="container">
81 <div id="test-box" class="box"></div> 81 <div id="test-box" class="box"></div>
82 </div> 82 </div>
83 83
84 <div id="results"> 84 <div id="results">
85 </div> 85 </div>
86 </body> 86 </body>
87 </html> 87 </html>
OLDNEW
« no previous file with comments | « LayoutTests/touchadjustment/rotated-node.html ('k') | LayoutTests/transforms/2d/compound-transforms-vs-containers.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698