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

Unified Diff: LayoutTests/compositing/repaint/fixed-pos-with-composited-child.html

Issue 403843002: Convert some layout tests to text-based-repaint tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase tests (due to removal of <pre>) Created 6 years, 5 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/compositing/repaint/fixed-pos-with-composited-child.html
diff --git a/LayoutTests/compositing/repaint/fixed-pos-with-composited-child.html b/LayoutTests/compositing/repaint/fixed-pos-with-composited-child.html
index 8a7e690738c0c7078a520f01d4684935b602570b..dcc4a0260256966a50f953d04146dad889f39a34 100644
--- a/LayoutTests/compositing/repaint/fixed-pos-with-composited-child.html
+++ b/LayoutTests/compositing/repaint/fixed-pos-with-composited-child.html
@@ -2,7 +2,7 @@
<html>
<head>
-<script src="../../resources/run-after-display.js"></script>
+<script src="../../fast/repaint/resources/text-based-repaint.js"></script>
<style>
.fixedContainer {
@@ -24,37 +24,19 @@
</style>
<script>
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
-
if (window.internals) {
/* Note carefully, compositing for fixed position is _disabled_ here */
internals.settings.setAcceleratedCompositingForFixedPositionEnabled(false);
}
- function test()
+ function repaintTest()
{
- runAfterDisplay(function() {
- if (window.internals)
- window.internals.startTrackingRepaints(document);
-
- window.scrollTo(0, 100);
-
- runAfterDisplay(function() {
- if (window.internals)
- document.getElementById('layers').textContent = window.internals.layerTreeAsText(document, internals.LAYER_TREE_INCLUDES_REPAINT_RECTS);
-
- if (window.testRunner)
- testRunner.notifyDone();
- });
- });
+ window.scrollTo(0, 100);
}
</script>
</head>
-<body style="height:4000px;" onload="test()">
+<body style="height:4000px;" onload="runRepaintTest()">
<!--
Among other duplicate bugs: https://code.google.com/p/chromium/issues/detail?id=151734
@@ -75,8 +57,6 @@
<div class="fixedContainer">
<div id="foo"></div>
</div>
-
- <pre id="layers"></pre>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698