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

Side by Side Diff: LayoutTests/compositing/layer-creation/scroll-blocks-on-script.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 #target {
4 width: 20px;
5 height: 20px;
6 }
7 </style>
8 <div id="target"></div>
9 <script>
10 onload = function() {
11 target.style.scrollBlocksOn = 'scroll-event';
12 if (window.testRunner) {
13 testRunner.dumpAsText();
14 var output = "Verify that setting scroll-blocks-on from script immed iately creates the necessary layer.\n\n";
15 output += internals.layerTreeAsText(document, internals.LAYER_TREE_I NCLUDES_SCROLL_BLOCKS_ON);
16 testRunner.setCustomTextOutput(output);
17 }
18 };
19 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698