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

Side by Side Diff: ppapi/tests/test_case.html

Issue 11446008: Fix invalid HTML markup in test_cast.html (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html><head> 1 <html><head>
2 <meta http-equiv="Pragma" content="no-cache" /> 2 <meta http-equiv="Pragma" content="no-cache" />
3 <meta http-equiv="Expires" content="-1" /> 3 <meta http-equiv="Expires" content="-1" />
4 <link rel="stylesheet" href="test_page.css"> 4 <link rel="stylesheet" href="test_page.css">
5 <script> 5 <script>
6 function AdjustHeight(frameWin) { 6 function AdjustHeight(frameWin) {
7 var div = frameWin.document.getElementsByTagName("div")[0]; 7 var div = frameWin.document.getElementsByTagName("div")[0];
8 var height = frameWin.getComputedStyle(div).height; 8 var height = frameWin.getComputedStyle(div).height;
9 frameWin.frameElement.style.height = height; 9 frameWin.frameElement.style.height = height;
10 } 10 }
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 LogHTML("<p>Bad MessageEvent constructor called!"); 266 LogHTML("<p>Bad MessageEvent constructor called!");
267 } 267 }
268 MessageEvent.prototype.initMessageEvent = function() { 268 MessageEvent.prototype.initMessageEvent = function() {
269 LogHTML("<p>Bad MessageEvent.initMessageEvent called!"); 269 LogHTML("<p>Bad MessageEvent.initMessageEvent called!");
270 } 270 }
271 271
272 </script> 272 </script>
273 </head><body> 273 </head><body>
274 <div> 274 <div>
275 <div id="container"></div> 275 <div id="container"></div>
276 <div id="console" /><span class="load_msg">loading...</span></div> 276 <div id="console"><span class="load_msg">loading...</span></div>
277 </div> 277 </div>
278 </body></html> 278 </body></html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698