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

Side by Side Diff: LayoutTests/transitions/opacity-transform-transitions-inside-iframe.html

Issue 101623002: Drop "only composite opacity animations when already in compositing mode". (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Seperate window.internals and window.testRunner Created 7 years 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
OLDNEW
(Empty)
1 <html>
2 <!-- This test is minimal test case of crbug.com/324685. This test mimics Chrome Settings page. -->
3 <head>
4 <style>
5 iframe {
6 border: none;
7 display: block;
8 height: 100%;
9 width: 100%;
10 }
11 </style>
12 <script>
13 if (window.testRunner) {
14 testRunner.waitUntilDone();
15 testRunner.dumpAsTextWithPixelResults();
16 }
17 function testFinished()
18 {
19 if (window.testRunner)
20 testRunner.notifyDone();
21 }
22 if (window.internals) {
23 internals.settings.setForceCompositingMode(true);
24 }
25 window.onmessage = function (messageEvent) {
26 testFinished();
27 }
28 </script>
29 </head>
30 <body>
31 <!-- The document inside iframe is not in force compositing mode, because ifra me does not have overflow property. -->
32 <div id="parent">
33 <iframe id="iframe" src="resources/opacity-transform-transitions-inside-ifra me-inner.html"></iframe>
34 </div>
35 </body>
36 </html>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/transitions/opacity-transform-transitions-inside-iframe-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698