Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: sources/object-subrequest.as

Issue 29755578: Issue 2148 - Rewrite the testpages test suite (Closed)
Patch Set: Created April 18, 2018, 11:54 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sources/object-subrequest.as
===================================================================
new file mode 100644
--- /dev/null
+++ b/sources/object-subrequest.as
@@ -0,0 +1,22 @@
+// object-subrequest.as
+// Source for generating test SWF object for the object-subrequest testcase page.
+
+// Compile with SWFTools as3compile:
+// as3compile -X 250 -Y 250 object-subrequest.as
+
+package
+{
+ import flash.display.MovieClip
+
+ public class Main extends MovieClip
+ {
+ function Main()
+ {
+ this.graphics.beginFill(0xcc0000)
+ this.graphics.drawRect(0,0, 250,250);
+ this.graphics.endFill()
+
kzar 2018/04/19 13:08:22 Nit: Please could you remove the trailing whitespa
+ // Do network request.
+ }
kzar 2018/04/19 13:08:22 Nit: Please could you remove the trailing whitespa
+ }
+}

Powered by Google App Engine
This is Rietveld