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

Unified Diff: LayoutTests/imported/web-platform-tests/html/editing/dnd/platform/plugin/swfsources/mouseup.hx

Issue 1157103007: update-w3c-deps import using blink b712b6ce0eb599d90d890aa609f596c7852fb824 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Skip swfsoures Created 5 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/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();
- }
-}

Powered by Google App Engine
This is Rietveld 408576698