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

Unified Diff: third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-repaint-composited-filter.html

Issue 2529263002: Reduce usage of webkit prefix in paint invalidation layout tests (Closed)
Patch Set: invalidation Created 4 years, 1 month 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: third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-repaint-composited-filter.html
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-repaint-composited-filter.html b/third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-repaint-composited-filter.html
index 2f144d2906df9205db1452745f54e25c8d72c0b5..14a9d4df4d23b80e8364174aa2f4576c7a2f9f85 100644
--- a/third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-repaint-composited-filter.html
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-repaint-composited-filter.html
@@ -5,13 +5,13 @@
width: 100px;
height: 100px;
background-color: green;
- -webkit-filter: invert(70%);
+ filter: invert(70%);
}
</style>
<script src="../resources/text-based-repaint.js"></script>
<script>
function repaintTest() {
- document.getElementById('composited-box').style.webkitFilter = 'invert(100%)';
+ document.getElementById('composited-box').style.filter = 'invert(100%)';
}
window.onload = runRepaintTest;
</script>

Powered by Google App Engine
This is Rietveld 408576698