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

Unified Diff: LayoutTests/fast/repaint/child-of-sub-pixel-offset-composited-layer.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
Index: LayoutTests/fast/repaint/child-of-sub-pixel-offset-composited-layer.html
diff --git a/LayoutTests/fast/repaint/child-of-sub-pixel-offset-composited-layer.html b/LayoutTests/fast/repaint/child-of-sub-pixel-offset-composited-layer.html
index c2520db3c4b065edd24afbb2943cf26c75487737..b9fae83d26381b31ba9b05255ad17f0858eee943 100644
--- a/LayoutTests/fast/repaint/child-of-sub-pixel-offset-composited-layer.html
+++ b/LayoutTests/fast/repaint/child-of-sub-pixel-offset-composited-layer.html
@@ -3,24 +3,23 @@
<head>
<style>
.container {
- -webkit-transform: translateZ(0);
- transform: translateZ(0);
- position: absolute;
- top: 100px;
- left:100.5px;
- background-color: red;
+ transform: translateZ(0);
+ position: absolute;
+ top: 100px;
+ left:100.5px;
+ background-color: red;
}
#target {
- position: absolute;
- left: 0px;
- width: 10px;
- height: 10px;
- border: 2px solid red;
+ position: absolute;
+ left: 0px;
+ width: 10px;
+ height: 10px;
+ border: 2px solid red;
}
#target.green {
- border-color: green;
+ border-color: green;
}
</style>
<script src="resources/text-based-repaint.js" type="text/javascript"></script>
@@ -36,7 +35,7 @@
if (window.testRunner)
testRunner.dumpAsTextWithPixelResults();
function repaintTest() {
- var target = document.getElementById('target');
- target.classList.add('green');
+ var target = document.getElementById('target');
+ target.classList.add('green');
}
</script>

Powered by Google App Engine
This is Rietveld 408576698