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

Unified 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: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ManualTests/inline-repaint-container.html ('k') | ManualTests/interrupted-compound-transform.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ManualTests/inspector/highlight-nodes.html
diff --git a/ManualTests/inspector/highlight-nodes.html b/ManualTests/inspector/highlight-nodes.html
index 6712b3af61188936a0daeedc9ded79c26825a154..997251af70ca0d24d77c6cbde6478b6765a9bfc6 100644
--- a/ManualTests/inspector/highlight-nodes.html
+++ b/ManualTests/inspector/highlight-nodes.html
@@ -1,6 +1,6 @@
<style>
.skewed {
- -webkit-transform:skew(-5deg,-5deg);
+ transform:skew(-5deg,-5deg);
}
</style>
<p>This page has basic tests of node highlighting in the inspected page. To tests, 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 padding/border/margin/content highlights.</p>
@@ -12,12 +12,12 @@
<div style="border: 10px solid;">border: 10px;</div>
<div style="margin: 10px;">margin: 10px;</div>
<div>no padding, border, or margin</div>
-<div class=skewed style="padding:10px; border: 10px solid; margin: 10px;">-webkit-transform:skew(-5deg,-5deg); padding:10px; border: 10px; margin: 10px;</div>
-<div class=skewed style="padding:10px; border: 10px solid;">-webkit-transform:skew(-5deg,-5deg); padding:10px; border: 10px;</div>
-<div class=skewed style="padding:10px; margin: 10px;">-webkit-transform:skew(-5deg,-5deg); padding:10px; margin: 10px;</div>
-<div class=skewed style="border: 10px solid; margin: 10px;">-webkit-transform:skew(-5deg,-5deg); border: 10px; margin: 10px;</div>
-<div class=skewed style="padding:10px">-webkit-transform:skew(-5deg,-5deg); padding:10px;</div>
-<div class=skewed style="border: 10px solid;">-webkit-transform:skew(-5deg,-5deg); border: 10px;</div>
-<div class=skewed style="margin: 10px;">-webkit-transform:skew(-5deg,-5deg); margin: 10px;</div>
-<div class=skewed >-webkit-transform:skew(-5deg,-5deg); no padding, border, or margin</div>
+<div class=skewed style="padding:10px; border: 10px solid; margin: 10px;">transform:skew(-5deg,-5deg); padding:10px; border: 10px; margin: 10px;</div>
+<div class=skewed style="padding:10px; border: 10px solid;">transform:skew(-5deg,-5deg); padding:10px; border: 10px;</div>
+<div class=skewed style="padding:10px; margin: 10px;">transform:skew(-5deg,-5deg); padding:10px; margin: 10px;</div>
+<div class=skewed style="border: 10px solid; margin: 10px;">transform:skew(-5deg,-5deg); border: 10px; margin: 10px;</div>
+<div class=skewed style="padding:10px">transform:skew(-5deg,-5deg); padding:10px;</div>
+<div class=skewed style="border: 10px solid;">transform:skew(-5deg,-5deg); border: 10px;</div>
+<div class=skewed style="margin: 10px;">transform:skew(-5deg,-5deg); margin: 10px;</div>
+<div class=skewed >transform:skew(-5deg,-5deg); no padding, border, or margin</div>
« no previous file with comments | « ManualTests/inline-repaint-container.html ('k') | ManualTests/interrupted-compound-transform.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698