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

Side by Side Diff: LayoutTests/compositing/layer-creation/scroll-blocks-on-default.html

Issue 784453003: Initial scroll-blocks-on compositor integration (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Eliminate scrollbars from iframe test for cross-platform output consistency Created 5 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 #layer {
4 transform: translateZ(0);
5 width: 20px;
6 height: 20px;
7 }
8 </style>
9 <div id="layer"></div>
10 <iframe srcdoc="<div style='width: 15px;'></div>"></iframe>
11 <script>
12 onload = function() {
13 if (window.testRunner) {
14 testRunner.dumpAsText();
15 var output = "Verify we get the default scroll-blocks-on mode applie d to the viewport, no additional layers created (even with an iframe), and no sc roll-blocks-on mode applied to any other layer.\n\n";
16 output += internals.layerTreeAsText(document, internals.LAYER_TREE_I NCLUDES_SCROLL_BLOCKS_ON);
17 testRunner.setCustomTextOutput(output);
18 }
19 };
20 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698