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

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

Issue 1287623002: Delete blink code for scroll-blocks-on (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Merge with trunk (no changes from previous patch) Created 5 years, 4 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 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k" version="1.1">
2 <foreignObject x="20" y="20" width="200" height="100">
3 <html xmlns="http://www.w3.org/1999/xhtml">
4 <body>
5 <div style="height:10px;"></div>
6 </body>
7 </html>
8 </foreignObject>
9
10 <script>
11 if (window.testRunner) {
12 testRunner.dumpAsText();
13 var output = "This test verifies that SVG documents have the default scr oll-blocks-on mode applied to them, and that foreignObject html documents inside them don't create a new composited layer unnecessarily.\n\n";
14 output += internals.layerTreeAsText(document, internals.LAYER_TREE_INCLU DES_SCROLL_BLOCKS_ON);
15 testRunner.setCustomTextOutput(output);
16 }
17 </script>
18 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698