| Index: LayoutTests/imported/web-platform-tests/html/editing/dnd/platform/plugin/swfsources/mouseup.hx
|
| diff --git a/LayoutTests/imported/web-platform-tests/html/editing/dnd/platform/plugin/swfsources/mouseup.hx b/LayoutTests/imported/web-platform-tests/html/editing/dnd/platform/plugin/swfsources/mouseup.hx
|
| deleted file mode 100644
|
| index 13a8757bd79bf20a3c90cf0b49fd96b938aedaf2..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/imported/web-platform-tests/html/editing/dnd/platform/plugin/swfsources/mouseup.hx
|
| +++ /dev/null
|
| @@ -1,34 +0,0 @@
|
| -import flash.Lib;
|
| -import flash.display.Sprite;
|
| -import flash.events.MouseEvent;
|
| -
|
| -class MouseUp extends Sprite
|
| -{
|
| - var s:Sprite;
|
| -
|
| - static function main()
|
| - {
|
| - new MouseUp();
|
| - }
|
| -
|
| - public function new()
|
| - {
|
| - super();
|
| - flash.Lib.current.addChild(this);
|
| -
|
| - s = new Sprite();
|
| - s.graphics.beginFill(0xffa500);
|
| - s.graphics.drawRect(0, 0, stage.stageWidth, stage.stageHeight);
|
| - s.graphics.endFill();
|
| - stage.addChild(s);
|
| -
|
| - stage.addEventListener(MouseEvent.MOUSE_UP, OnMouseUp);
|
| - }
|
| -
|
| - function OnMouseUp(event:MouseEvent):Void
|
| - {
|
| - s.graphics.beginFill(0xffee00);
|
| - s.graphics.drawRect(0, 0, stage.stageWidth, stage.stageHeight);
|
| - s.graphics.endFill();
|
| - }
|
| -}
|
|
|