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

Side by Side Diff: LayoutTests/fast/frames/iframe-scale-applied-twice.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <p id="result">Test did not run</p> 2 <p id="result">Test did not run</p>
3 <div style="-webkit-transform: scale(2);"> 3 <div style="transform: scale(2);">
4 <iframe id="target" style="width: 100px; height: 100px; border: none;"></ifr ame> 4 <iframe id="target" style="width: 100px; height: 100px; border: none;"></ifr ame>
5 </div> 5 </div>
6 <script> 6 <script>
7 if (window.testRunner) 7 if (window.testRunner)
8 testRunner.dumpAsText(); 8 testRunner.dumpAsText();
9 var target = document.getElementById("target"); 9 var target = document.getElementById("target");
10 document.body.offsetTop; 10 document.body.offsetTop;
11 document.getElementById("result").innerText = target.contentDocument.body.of fsetWidth > 100 ? "FAIL" : "PASS"; 11 document.getElementById("result").innerText = target.contentDocument.body.of fsetWidth > 100 ? "FAIL" : "PASS";
12 </script> 12 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fast/frames/frame-set-scaling-skew.html ('k') | LayoutTests/fast/frames/iframe-scaling-with-scroll.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698