Index: LayoutTests/fast/events/mouse-event-buttons-attribute-expected.txt |
diff --git a/LayoutTests/fast/events/mouse-event-buttons-attribute-expected.txt b/LayoutTests/fast/events/mouse-event-buttons-attribute-expected.txt |
index 38a297d5f0f1a9f6046fc792091cf8d031a9fa87..547359e6aad0a776826d2450b4fd8f4f5389c4a3 100644 |
--- a/LayoutTests/fast/events/mouse-event-buttons-attribute-expected.txt |
+++ b/LayoutTests/fast/events/mouse-event-buttons-attribute-expected.txt |
@@ -67,6 +67,24 @@ PASS testSet[i].buttons is 2 |
GestureEvent::contextmenu with |showContextMenuOnMouseUp=true| longTapAction([rightButton]) -> shouldBe([]) |
PASS testSet[i].buttons is 0 |
+DragEvent::dragstart dragDropAction([leftButton,rightButton]) -> shouldBe([leftButton,rightButton]) |
+PASS testSet[i].buttons is 3 |
+ |
+DragEvent::drag dragDropAction([leftButton,middleButton,rightButton]) -> shouldBe([leftButton,middleButton,rightButton]) |
+PASS testSet[i].buttons is 7 |
+ |
+DragEvent::dragend dragDropAction([leftButton,rightButton]) -> shouldBe([]) |
+PASS testSet[i].buttons is 0 |
+ |
+DragEvent::dragenter dragDropAction([leftButton,middleButton]) -> shouldBe([leftButton,middleButton]) |
+PASS testSet[i].buttons is 5 |
+ |
+DragEvent::dragleave dragDropAction([leftButton,rightButton]) -> shouldBe([leftButton,rightButton]) |
+PASS testSet[i].buttons is 3 |
+ |
+DragEvent::dragover dragDropAction([leftButton,middleButton]) -> shouldBe([leftButton,middleButton]) |
+PASS testSet[i].buttons is 5 |
+ |
PASS successfullyParsed is true |
TEST COMPLETE |