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

Side by Side Diff: LayoutTests/imported/web-platform-tests/html/editing/dnd/synthetic/001-expected.txt

Issue 1232003009: Implement DragEvent and move MouseEvent.dataTransfer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix plugin failure of LayoutTest Created 5 years, 4 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 This is a testharness.js-based test. 1 This is a testharness.js-based test.
2 FAIL window.DragEvent should be exposed assert_own_property: expected property " DragEvent" missing 2 PASS window.DragEvent should be exposed
3 PASS createEvent should not be able to create a DragEvent 3 FAIL createEvent should not be able to create a DragEvent assert_throws: functio n "function () {
4 FAIL DragEvent should have all of the inherited init*Event methods DragEvent is not defined 4 » var evt = document.createEvent('DragEvent..." did not throw
5 FAIL initMouseEvent should not throw DragEvent is not defined 5 PASS DragEvent should have all of the inherited init*Event methods
6 FAIL initUIEvent should not throw DragEvent is not defined 6 PASS initMouseEvent should not throw
7 FAIL initEvent should not throw DragEvent is not defined 7 PASS initUIEvent should not throw
8 FAIL DragEvent constructor with null as the dataTransfer parameter should be abl e to fire the event DragEvent is not defined 8 PASS initEvent should not throw
9 FAIL DragEvent constructor with undefined as the dataTransfer parameter should b e able to fire the event DragEvent is not defined 9 PASS DragEvent constructor with null as the dataTransfer parameter should be abl e to fire the event
10 FAIL DragEvent constructor with custom object as the dataTransfer parameter shou ld throw TypeError assert_throws: function "function () { 10 PASS DragEvent constructor with undefined as the dataTransfer parameter should b e able to fire the event
11 » var evt = new DragEvent('dragstart', {dat..." threw object "ReferenceErr or: DragEvent is not defined" ("ReferenceError") expected object "TypeError" ("T ypeError") 11 PASS DragEvent constructor with custom object as the dataTransfer parameter shou ld throw TypeError
12 FAIL initMouseEvent should be able to fire the event DragEvent is not defined 12 PASS initMouseEvent should be able to fire the event
13 FAIL initUIEvent should be able to fire the event DragEvent is not defined 13 PASS initUIEvent should be able to fire the event
14 FAIL initEvent should be able to fire the event DragEvent is not defined 14 PASS initEvent should be able to fire the event
15 FAIL DragEvent constructor with null as the dataTransfer parameter should give n ull as the dataTransfer DragEvent is not defined 15 PASS DragEvent constructor with null as the dataTransfer parameter should give n ull as the dataTransfer
16 FAIL DragEvent constructor with undefined as the dataTransfer parameter should g ive null as the dataTransfer DragEvent is not defined 16 PASS DragEvent constructor with undefined as the dataTransfer parameter should g ive null as the dataTransfer
17 FAIL initMouseEvent should give null as the dataTransfer DragEvent is not define d 17 PASS initMouseEvent should give null as the dataTransfer
18 FAIL initUIEvent should give null as the dataTransfer DragEvent is not defined 18 PASS initUIEvent should give null as the dataTransfer
19 FAIL initEvent should give null as the dataTransfer DragEvent is not defined 19 PASS initEvent should give null as the dataTransfer
20 Harness: the test ran to completion. 20 Harness: the test ran to completion.
21 21
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698