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

Side by Side Diff: LayoutTests/compositing/child-transform-layer-requires-box.html

Issue 239513010: Only boxes should have child transform layers. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: de-crazified the test. Created 6 years, 8 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 <style>
Julien - ping for review 2014/04/17 00:02:38 Where is Da DOCTYPE?
Ian Vollick 2014/04/17 01:31:03 Added!
2 </style>
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
6
7 onload = function() {
8 el0=document.createElement('a'); el0.setAttribute('id','el0'); document.bo dy.appendChild(el0);
9 el4=document.createElement('input'); el4.setAttribute('id','el4'); el0.app endChild(el4);
10 document.querySelector('style').appendChild(document.createTextNode('#el0 { -webkit-perspective:800 }'));
11 document.querySelector('style').appendChild(document.createTextNode('#el0 { opacity:0 }'));
12 document.querySelector('style').appendChild(document.createTextNode('#el4 { -webkit-transform:translate3d(0,20px,0) }'));
13 }
14 </script>
15 <body>
16 This test passes if it does not crash.
Julien - ping for review 2014/04/17 00:02:38 How about a description of what you are testing?
Ian Vollick 2014/04/17 01:31:03 Done.
17 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698