summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/editing/dnd/the-datatransfer-interface/effectAllowed-manual.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/html/editing/dnd/the-datatransfer-interface/effectAllowed-manual.html')
-rw-r--r--testing/web-platform/tests/html/editing/dnd/the-datatransfer-interface/effectAllowed-manual.html9
1 files changed, 4 insertions, 5 deletions
diff --git a/testing/web-platform/tests/html/editing/dnd/the-datatransfer-interface/effectAllowed-manual.html b/testing/web-platform/tests/html/editing/dnd/the-datatransfer-interface/effectAllowed-manual.html
index 08540b906a..61443da2c0 100644
--- a/testing/web-platform/tests/html/editing/dnd/the-datatransfer-interface/effectAllowed-manual.html
+++ b/testing/web-platform/tests/html/editing/dnd/the-datatransfer-interface/effectAllowed-manual.html
@@ -6,7 +6,6 @@
<link rel="author" title="Microsoft" href="http://www.microsoft.com/"/>
<link rel="help" href="http://dev.w3.org/html5/spec/dnd.html#datatransfer"/>
<meta name="assert" content="Set a value to effectAllowed attribute"/>
- <script src="../resources/dragdrop_support.js" type="text/javascript"></script>
<script type="text/javascript">
var TARGETEVENT1, TARGETEVENT2, TARGET1, TARGET2;
@@ -23,11 +22,11 @@
{
if("move" == evt.dataTransfer.effectAllowed)
{
- LogTestResult("PASS");
+ document.getElementById("test_result").firstChild.data = "PASS";
}
else
{
- LogTestResult("FAIL");
+ document.getElementById("test_result").firstChild.data = "FAIL";
}
}
}
@@ -39,8 +38,8 @@
{
TARGET1 = document.getElementById("target1");
TARGET2 = document.getElementById("target2");
- AddEventListenersForElement(TARGETEVENT1, DragstartEvent, false, TARGET1);
- AddEventListenersForElement(TARGETEVENT2, DragenterEvent, false, TARGET2);
+ TARGET1.addEventListener(TARGETEVENT1, DragstartEvent, false);
+ TARGET2.addEventListener(TARGETEVENT2, DragenterEvent, false);
}
</script>
</head>