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

Unified Diff: LayoutTests/fast/events/resize-subframe.html

Issue 6592044: Merge 79606 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/648/
Patch Set: Created 9 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/events/resize-subframe.html
===================================================================
--- LayoutTests/fast/events/resize-subframe.html (revision 79896)
+++ LayoutTests/fast/events/resize-subframe.html (working copy)
@@ -2,8 +2,10 @@
function test()
{
if (window.layoutTestController)
+ {
layoutTestController.dumpAsText();
-
+ layoutTestController.waitUntilDone();
+ }
document.body.offsetTop;
document.getElementById("iframe").style.height = "100px";
}
@@ -15,7 +17,10 @@
function resized()
{
if (window.layoutTestController)
+ {
alert('PASS');
+ layoutTestController.notifyDone();
+ }
else
document.body.appendChild(document.createTextNode('PASS'));
}

Powered by Google App Engine
This is Rietveld 408576698