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

Side by Side Diff: LayoutTests/compositing/overflow/content-loses-scrollbars.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> 1 <!DOCTYPE html>
2 <script src="../../resources/run-after-display.js"></script> 2 <script src="../../resources/run-after-display.js"></script>
3 <style> 3 <style>
4 .container { 4 .container {
5 width: 100px; 5 width: 100px;
6 height:100px; 6 height:100px;
7 position:absolute; 7 position:absolute;
8 -webkit-transform:translateZ(0); 8 transform:translateZ(0);
9 overflow:auto; 9 overflow:auto;
10 } 10 }
11 11
12 .content { 12 .content {
13 -webkit-transform: translateZ(0); 13 transform: translateZ(0);
14 position:absolute; 14 position:absolute;
15 width:10px; 15 width:10px;
16 height:10px; 16 height:10px;
17 } 17 }
18 18
19 .tall { 19 .tall {
20 height:200px; 20 height:200px;
21 } 21 }
22 22
23 .wide { 23 .wide {
(...skipping 30 matching lines...) Expand all
54 testRunner.notifyDone(); 54 testRunner.notifyDone();
55 } 55 }
56 } 56 }
57 57
58 if (window.testRunner) { 58 if (window.testRunner) {
59 testRunner.dumpAsText(); 59 testRunner.dumpAsText();
60 testRunner.waitUntilDone(); 60 testRunner.waitUntilDone();
61 } 61 }
62 runAfterDisplay(finishTest); 62 runAfterDisplay(finishTest);
63 </script> 63 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698