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

Side by Side Diff: tests/drawing/drawing.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>Drawing Demo</TITLE> 3 <TITLE>Drawing 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 6
7 <script type="text/javascript"> 7 <script type="text/javascript">
8 8
9 var nacl_elt; 9 var nacl_elt;
10 10
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 a semi-translucent triangle rendered in the foreground. This demo will run 45 a semi-translucent triangle rendered in the foreground. This demo will run
46 for a few thousand frames and then stop. Please reload the page to restart 46 for a few thousand frames and then stop. Please reload the page to restart
47 the animation. 47 the animation.
48 </p> 48 </p>
49 <p> 49 <p>
50 This demo uses an open source library called Anti-Grain Geometry, which 50 This demo uses an open source library called Anti-Grain Geometry, which
51 provides high quality anti-aliased rendering. Please see 51 provides high quality anti-aliased rendering. Please see
52 <a href="http://www.antigrain.com/">http://www.antigrain.com/</a> 52 <a href="http://www.antigrain.com/">http://www.antigrain.com/</a>
53 for more information about Anti-Grain Geometry. 53 for more information about Anti-Grain Geometry.
54 </p> 54 </p>
55 <embed id="embed1" src="drawing.nexe" type="application/x-nacl-srpc" width=512 h eight=512> 55 <embed id="embed1" nexe="drawing" type="application/x-nacl-srpc"
56 width=512 height=512>
57 <noembed>
58 Your browser does not appear to support Native Client.
59 Visit http://code.google.com/p/nativeclient/ to get started.
60 <noembed/>
61 </embed>
56 <br> 62 <br>
57 63
58 <script> 64 <script>
59 var embed1 = document.getElementById('embed1'); 65 var embed1 = document.getElementById('embed1');
60 </script> 66 </script>
61 67
62 68
63 </BODY> 69 </BODY>
64 </HTML> 70 </HTML>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698