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

Side by Side Diff: third_party/WebKit/LayoutTests/mhtml/cid_in_html_resource.html

Issue 2834013002: PlzNavigate: make MHTML iframe load working. (Closed)
Patch Set: rebase Created 3 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
OLDNEW
(Empty)
1 <head>
2 <script>
3 if (window.testRunner)
4 window.testRunner.dumpAsText();
5 </script>
6 <link rel="stylesheet" type="text/css" href="cid:xxxxxx">
7 <style type="text/css">
8 @font-face {
9 font-family: "My Custom Font";
10 src: url(cid:xxxxxx) format("truetype");
11 }
12 body {
13 font-family: "My Custom Font", Verdana, Tahoma;
14 }
15 </style>
16 </head>
17 <body>
18 <script src="cid:xxxxxx"></script>
19 <img href="cid:xxxxxx"></img>
20 <p>
21 No Content-ID url are expected outside of an MHTML document.
22 The document should load without crashing.
23 </p>
24 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698