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

Side by Side Diff: LayoutTests/compositing/contents-opaque/visibility-hidden.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 <html> 2 <html>
3 <head> 3 <head>
4 <style type="text/css"> 4 <style type="text/css">
5 header { 5 header {
6 position: absolute; 6 position: absolute;
7 top: 20px; 7 top: 20px;
8 width: 200px; 8 width: 200px;
9 height: 50px; 9 height: 50px;
10 background-color: silver; 10 background-color: silver;
11 -webkit-transform: translateZ(0); 11 transform: translateZ(0);
12 } 12 }
13 header.hidden { 13 header.hidden {
14 visibility: hidden; 14 visibility: hidden;
15 } 15 }
16 nav { 16 nav {
17 height: 37px; 17 height: 37px;
18 overflow: hidden; 18 overflow: hidden;
19 } 19 }
20 nav ul li { 20 nav ul li {
21 height: 50px; 21 height: 50px;
(...skipping 19 matching lines...) Expand all
41 <header> 41 <header>
42 <nav> 42 <nav>
43 <ul> 43 <ul>
44 <li>Some text here</li> 44 <li>Some text here</li>
45 </ul> 45 </ul>
46 </nav> 46 </nav>
47 </header> 47 </header>
48 <pre id="layertree"></pre> 48 <pre id="layertree"></pre>
49 </body> 49 </body>
50 </html> 50 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698