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

Unified Diff: LayoutTests/http/tests/css/missing-repaint-after-slow-style-sheet.pl

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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/css/missing-repaint-after-slow-style-sheet.pl
diff --git a/LayoutTests/http/tests/css/missing-repaint-after-slow-style-sheet.pl b/LayoutTests/http/tests/css/missing-repaint-after-slow-style-sheet.pl
index 53fd75a6be549a9f108cb3272908c4d709ab5d17..2952c6025e9605e7873e94b540598b9ad278b4ab 100755
--- a/LayoutTests/http/tests/css/missing-repaint-after-slow-style-sheet.pl
+++ b/LayoutTests/http/tests/css/missing-repaint-after-slow-style-sheet.pl
@@ -26,6 +26,6 @@ print_maybe_chunked "<!DOCTYPE html><style>h2 { background-color: green; }</styl
print_maybe_chunked "<link rel='stylesheet' onload='start()'>";
print_maybe_chunked "<body><script>document.getElementsByTagName('link')[0].href='resources/slow-loading-sheet.php?color=green&sleep=500000'; document.body.offsetTop; requestAnimationFrame(function() { console.log('requestAnimationFrame ran'); });";
print_maybe_chunked "function start() { console.log('Stylesheet loaded'); } console.log('Inline script done');</script>";
-print_maybe_chunked "<h1>Styled by external stylesheet</h1><div style='height: 200px'></div><h2>Noncomposited</h2><h2 style='-webkit-transform:translateZ(0)'>Composited</h2>";
+print_maybe_chunked "<h1>Styled by external stylesheet</h1><div style='height: 200px'></div><h2>Noncomposited</h2><h2 style='transform:translateZ(0)'>Composited</h2>";
sleep(1);
print_maybe_chunked "";

Powered by Google App Engine
This is Rietveld 408576698