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

Side by Side 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.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // object-subrequest.as
2 // Source for generating test SWF object for the object-subrequest testcase page .
3
4 // Compile with SWFTools as3compile:
5 // as3compile -X 250 -Y 250 object-subrequest.as
6
7 package
8 {
9 import flash.display.MovieClip
10
11 public class Main extends MovieClip
12 {
13 function Main()
14 {
15 this.graphics.beginFill(0xcc0000)
16 this.graphics.drawRect(0,0, 250,250);
17 this.graphics.endFill()
18
kzar 2018/04/19 13:08:22 Nit: Please could you remove the trailing whitespa
19 // Do network request.
20 }
kzar 2018/04/19 13:08:22 Nit: Please could you remove the trailing whitespa
21 }
22 }
OLDNEW

Powered by Google App Engine
This is Rietveld