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

Side by Side Diff: LayoutTests/editing/spelling/inline-spelling-markers-hidpi-composited.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 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../resources/js-test.js"></script> 3 <script src="../../resources/js-test.js"></script>
4 <script src="../../editing/editing.js"></script> 4 <script src="../../editing/editing.js"></script>
5 <style> 5 <style>
6 .testDiv { 6 .testDiv {
7 width: 200px; 7 width: 200px;
8 height: 20px; 8 height: 20px;
9 border: 1px solid black; 9 border: 1px solid black;
10 white-space: nowrap; 10 white-space: nowrap;
11 overflow: hidden; 11 overflow: hidden;
12 -webkit-transform: translateZ(0); 12 transform: translateZ(0);
13 } 13 }
14 14
15 .forcertl { 15 .forcertl {
16 direction: rtl; 16 direction: rtl;
17 unicode-bidi: bidi-override; 17 unicode-bidi: bidi-override;
18 } 18 }
19 19
20 .ellipses { 20 .ellipses {
21 text-overflow:ellipsis; 21 text-overflow:ellipsis;
22 } 22 }
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 { 104 {
105 var next = tests.shift(); 105 var next = tests.shift();
106 if (next) 106 if (next)
107 return window.setTimeout(next, 0); 107 return window.setTimeout(next, 0);
108 108
109 finishJSTest(); 109 finishJSTest();
110 } 110 }
111 </script> 111 </script>
112 </body> 112 </body>
113 </html> 113 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698