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

Side by Side Diff: ManualTests/inspector/highlight-nodes.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove duplicate transform 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 <style> 1 <style>
2 .skewed { 2 .skewed {
3 -webkit-transform:skew(-5deg,-5deg); 3 transform:skew(-5deg,-5deg);
4 } 4 }
5 </style> 5 </style>
6 <p>This page has basic tests of node highlighting in the inspected page. To test s, load this page, open the inspector and mouseover the nodes in the treeview of the inspector. You should see the highlights happen with the appropriate paddin g/border/margin/content highlights.</p> 6 <p>This page has basic tests of node highlighting in the inspected page. To test s, load this page, open the inspector and mouseover the nodes in the treeview of the inspector. You should see the highlights happen with the appropriate paddin g/border/margin/content highlights.</p>
7 <div style="padding:10px; border: 10px solid; margin: 10px;">padding:10px; borde r: 10px; margin: 10px;</div> 7 <div style="padding:10px; border: 10px solid; margin: 10px;">padding:10px; borde r: 10px; margin: 10px;</div>
8 <div style="padding:10px; border: 10px solid;">padding:10px; border: 10px;</div> 8 <div style="padding:10px; border: 10px solid;">padding:10px; border: 10px;</div>
9 <div style="padding:10px; margin: 10px;">padding:10px; margin: 10px;</div> 9 <div style="padding:10px; margin: 10px;">padding:10px; margin: 10px;</div>
10 <div style="border: 10px solid; margin: 10px;">border: 10px; margin: 10px;</div> 10 <div style="border: 10px solid; margin: 10px;">border: 10px; margin: 10px;</div>
11 <div style="padding:10px">padding:10px;</div> 11 <div style="padding:10px">padding:10px;</div>
12 <div style="border: 10px solid;">border: 10px;</div> 12 <div style="border: 10px solid;">border: 10px;</div>
13 <div style="margin: 10px;">margin: 10px;</div> 13 <div style="margin: 10px;">margin: 10px;</div>
14 <div>no padding, border, or margin</div> 14 <div>no padding, border, or margin</div>
15 <div class=skewed style="padding:10px; border: 10px solid; margin: 10px;">-webki t-transform:skew(-5deg,-5deg); padding:10px; border: 10px; margin: 10px;</div> 15 <div class=skewed style="padding:10px; border: 10px solid; margin: 10px;">transf orm:skew(-5deg,-5deg); padding:10px; border: 10px; margin: 10px;</div>
16 <div class=skewed style="padding:10px; border: 10px solid;">-webkit-transform:sk ew(-5deg,-5deg); padding:10px; border: 10px;</div> 16 <div class=skewed style="padding:10px; border: 10px solid;">transform:skew(-5deg ,-5deg); padding:10px; border: 10px;</div>
17 <div class=skewed style="padding:10px; margin: 10px;">-webkit-transform:skew(-5d eg,-5deg); padding:10px; margin: 10px;</div> 17 <div class=skewed style="padding:10px; margin: 10px;">transform:skew(-5deg,-5deg ); padding:10px; margin: 10px;</div>
18 <div class=skewed style="border: 10px solid; margin: 10px;">-webkit-transform:sk ew(-5deg,-5deg); border: 10px; margin: 10px;</div> 18 <div class=skewed style="border: 10px solid; margin: 10px;">transform:skew(-5deg ,-5deg); border: 10px; margin: 10px;</div>
19 <div class=skewed style="padding:10px">-webkit-transform:skew(-5deg,-5deg); padd ing:10px;</div> 19 <div class=skewed style="padding:10px">transform:skew(-5deg,-5deg); padding:10px ;</div>
20 <div class=skewed style="border: 10px solid;">-webkit-transform:skew(-5deg,-5deg ); border: 10px;</div> 20 <div class=skewed style="border: 10px solid;">transform:skew(-5deg,-5deg); borde r: 10px;</div>
21 <div class=skewed style="margin: 10px;">-webkit-transform:skew(-5deg,-5deg); mar gin: 10px;</div> 21 <div class=skewed style="margin: 10px;">transform:skew(-5deg,-5deg); margin: 10p x;</div>
22 <div class=skewed >-webkit-transform:skew(-5deg,-5deg); no padding, border, or m argin</div> 22 <div class=skewed >transform:skew(-5deg,-5deg); no padding, border, or margin</d iv>
23 23
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698