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

Side by Side Diff: LayoutTests/css3/filters/blur-filter-page-scroll.html

Issue 457893003: Remove unknown preferences errors in layout tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed to report all errors Created 6 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
« no previous file with comments | « no previous file | LayoutTests/css3/filters/blur-filter-page-scroll-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- This test asserts that blit-scrolling is disabled when blur is applied on a layer 1 <!-- This test asserts that blit-scrolling is disabled when blur is applied on a layer
2 that contains a fixed positioned object. 2 that contains a fixed positioned object.
3 One fixed black bar should be visible at the top of the page. The page shoul d be scrolled 3 One fixed black bar should be visible at the top of the page. The page shoul d be scrolled
4 100px and no red should be visible. The rest of the page should be green. 4 100px and no red should be visible. The rest of the page should be green.
5 --> 5 -->
6 <!DOCTYPE html> 6 <!DOCTYPE html>
7 <html> 7 <html>
8 <head> 8 <head>
9 <script> 9 <script>
10 if (window.testRunner) { 10 if (window.testRunner) {
11 // Force software rendering mode. 11 // Force software rendering mode.
12 window.testRunner.overridePreference("WebKitAcceleratedCompositi ngEnabled", "0"); 12 window.testRunner.overridePreference("acceleratedCompositingEnab led", "0");
Julien - ping for review 2014/08/11 21:28:34 It turns out that this setting is not recognized b
13 window.testRunner.waitUntilDone(); 13 window.testRunner.waitUntilDone();
14 } 14 }
15 </script> 15 </script>
16 <!-- Make sure the mock scrollbars are enabled after the call to overrid ePreference, otherwise the setting will be overwritten. --> 16 <!-- Make sure the mock scrollbars are enabled after the call to overrid ePreference, otherwise the setting will be overwritten. -->
17 <script src="../../compositing/resources/mock_scrollbars.js"></script> 17 <script src="../../compositing/resources/mock_scrollbars.js"></script>
18 <style> 18 <style>
19 body { 19 body {
20 margin: 0px; 20 margin: 0px;
21 border: 0px; 21 border: 0px;
22 padding: 0px; 22 padding: 0px;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 </script> 55 </script>
56 </head> 56 </head>
57 <body onload="repaintTest()"> 57 <body onload="repaintTest()">
58 <div class="blur"> 58 <div class="blur">
59 <div id="fixedBox"></div> 59 <div id="fixedBox"></div>
60 <div id="redBox"></div> 60 <div id="redBox"></div>
61 <div id="greenBox"></div> 61 <div id="greenBox"></div>
62 </div> 62 </div>
63 </body> 63 </body>
64 </html> 64 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/css3/filters/blur-filter-page-scroll-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698