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

Side by Side Diff: LayoutTests/fast/borders/border-antialiasing.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 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <style> 5 <style>
6 div { 6 div {
7 -webkit-transform-origin: top left; 7 -webkit-transform-origin: top left;
8 margin: 10px; 8 margin: 10px;
9 } 9 }
10 table { 10 table {
11 margin: 20px; 11 margin: 20px;
12 } 12 }
13 table.collapsed { 13 table.collapsed {
14 border-collapse: collapse; 14 border-collapse: collapse;
15 } 15 }
16 td { 16 td {
17 height: 10px; 17 height: 10px;
18 width: 10px; 18 width: 10px;
19 border: 1px solid black; 19 border: 1px solid black;
20 } 20 }
21 21
22 .shrunk { 22 .shrunk {
23 -webkit-transform: scale(0.35); 23 transform: scale(0.35);
24 } 24 }
25 25
26 .columns { 26 .columns {
27 -webkit-column-width: 10px; 27 -webkit-column-width: 10px;
28 -webkit-column-rule: 1px solid black; 28 -webkit-column-rule: 1px solid black;
29 column-width: 10px; 29 column-width: 10px;
30 column-rule: 1px solid black; 30 column-rule: 1px solid black;
31 column-fill: auto; 31 column-fill: auto;
32 width: 600px; 32 width: 600px;
33 height: 100px; 33 height: 100px;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 <div class="outlines"> 65 <div class="outlines">
66 <span>I am a span<br>I am</span> <span>I am<br>a span I am</span> 66 <span>I am a span<br>I am</span> <span>I am<br>a span I am</span>
67 <span>I am a span<br>I am</span> <span>I am<br>a span I am</span> 67 <span>I am a span<br>I am</span> <span>I am<br>a span I am</span>
68 <span>I am a span<br>I am</span> <span>I am<br>a span I am</span> 68 <span>I am a span<br>I am</span> <span>I am<br>a span I am</span>
69 <span>I am a span<br>I am</span> <span>I am<br>a span I am</span> 69 <span>I am a span<br>I am</span> <span>I am<br>a span I am</span>
70 </div> 70 </div>
71 </div> 71 </div>
72 72
73 </body> 73 </body>
74 </html> 74 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698