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

Side by Side Diff: tests/many/mix.html

Issue 1092005: Issue 1092005 (Closed) Base URL: http://nativeclient.googlecode.com/svn/trunk/src/native_client/
Patch Set: Created 10 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <HTML> 1 <HTML>
2 <HEAD> 2 <HEAD>
3 <TITLE>Mix Demo</TITLE> 3 <TITLE>Mix Demo</TITLE>
4 <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> 4 <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
5 <META HTTP-EQUIV="Expires" CONTENT="-1"> 5 <META HTTP-EQUIV="Expires" CONTENT="-1">
6 <script type="text/javascript"> 6 <script type="text/javascript">
7 7
8 var nacl_elt; 8 var nacl_elt;
9 var red_elt; 9 var red_elt;
10 var blue_elt; 10 var blue_elt;
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 Voronoi demo, with the entire circle being visible. 69 Voronoi demo, with the entire circle being visible.
70 </p> 70 </p>
71 <p> 71 <p>
72 The rendering is incorrect if: only half a blue circle is visible, 72 The rendering is incorrect if: only half a blue circle is visible,
73 the entire red circle is visible, or either circle flickers at any time. 73 the entire red circle is visible, or either circle flickers at any time.
74 </p> 74 </p>
75 <div style="{position: absolute; top: 200; left: 0; z-index:1;}"> 75 <div style="{position: absolute; top: 200; left: 0; z-index:1;}">
76 <canvas id="redspot" width=384 height=384 /> 76 <canvas id="redspot" width=384 height=384 />
77 </div> 77 </div>
78 <div style="{position: absolute; top: 200; left: 192; z-index:2;}"> 78 <div style="{position: absolute; top: 200; left: 192; z-index:2;}">
79 <embed id="embed" src="voronoi.nexe" type="application/x-nacl-srpc" width=384 he ight=384 update=52 /> 79 <embed id="embed" nexe="voronoi" type="application/x-nacl-srpc"
80 width=384 height=384 update=52>
81 <noembed>
82 Your browser does not appear to support Native Client.
83 Visit http://code.google.com/p/nativeclient/ to get started.
84 <noembed/>
85 </embed>
80 </div> 86 </div>
81 <div style="{position: absolute; top: 200; left: 384; z-index:3;}"> 87 <div style="{position: absolute; top: 200; left: 384; z-index:3;}">
82 <canvas id="bluespot" width=384 height=384 /> 88 <canvas id="bluespot" width=384 height=384 />
83 </div> 89 </div>
84 <br> 90 <br>
85 91
86 </BODY> 92 </BODY>
87 </HTML> 93 </HTML>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698