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

Side by Side Diff: LayoutTests/http/tests/loading/nested_bad_objects.php

Issue 7067001: Merge 86725 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/742/
Patch Set: Created 9 years, 7 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
« no previous file with comments | « no previous file | LayoutTests/http/tests/loading/nested_bad_objects-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <? 1 <?
2 if (isset($_GET['object'])) { 2 if (isset($_GET['object'])) {
3 header("Content-Type: nothing/bad-type"); 3 header("Content-Type: nothing/bad-type");
4 exit(); 4 exit();
5 } 5 }
6 ?> 6 ?>
7 <html> 7 <html>
8 <script> 8 <script>
9 if (window.layoutTestController) 9 if (window.layoutTestController)
10 layoutTestController.dumpAsText(); 10 layoutTestController.dumpAsText();
11 </script> 11 </script>
12 <object type="image/jpeg" data="nested_bad_objects.php?object"> 12 <object type="image/jpeg" data="nested_bad_objects.php?object">
13 <object type="image/jpeg" data="nested_bad_objects.php?object" /> 13 <object type="image/jpeg" data="nested_bad_objects.php?object" />
14 </object> 14 </object>
15 PASS - nested image objects with bad mimetype do not cause a crash. 15 PASS - nested image objects with bad mimetype do not cause a crash.
16 </html> 16 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/http/tests/loading/nested_bad_objects-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698