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

Unified Diff: LayoutTests/fast/events/standalone-image-drag-to-editable.html

Issue 17225002: Make user-select:none not to affect editability (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 2013-06-19T18:10:01 Created 7 years, 6 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/standalone-image-drag-to-editable.html
diff --git a/LayoutTests/fast/events/standalone-image-drag-to-editable.html b/LayoutTests/fast/events/standalone-image-drag-to-editable.html
index 1956be371b510c392f426b05d348aa644f921335..0b02cee71d5ffd878d3c77e7d3fd63c076915780 100644
--- a/LayoutTests/fast/events/standalone-image-drag-to-editable.html
+++ b/LayoutTests/fast/events/standalone-image-drag-to-editable.html
@@ -1,5 +1,10 @@
<html>
<script>
+ function finish()
+ {
+ document.body.outerHTML = 'PASS';
+ testRunner.notifyDone();
+ }
function runTest()
{
if (!window.eventSender)
@@ -18,8 +23,10 @@
if (++numFramesLoaded == 2)
runTest();
}
- if (window.testRunner)
+ if (window.testRunner) {
+ testRunner.dumpAsText();
testRunner.waitUntilDone();
+ }
</script>
<frameset rows="100px, 100px, *">
<frame onload="frameLoaded()" src="resources/standalone-image-drag-to-editable-frame.html">

Powered by Google App Engine
This is Rietveld 408576698