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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/custom/favicon-link.svg

Issue 2628873003: Look for favicon URLs (and similar <link>s) in SVG documents (Closed)
Patch Set: Find all <link>s in document (like Gecko.) Created 3 years, 11 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 | third_party/WebKit/LayoutTests/svg/custom/favicon-link-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
(Empty)
1 <svg xmlns="http://www.w3.org/2000/svg"
2 xmlns:html="http://www.w3.org/1999/xhtml">
3 <defs>
4 <html:link rel="shortcut icon" href="icon1.png"/>
5 <html:link rel="shortcut icon" href="icon2.png"/>
6 <html:link rel="shortcut icon" href="icon3.png"/>
7 </defs>
8 <text y="20"></text>
9 <defs>
10 <html:link rel="shortcut icon" href="icon4.png"/>
11 <html:link rel="shortcut icon" href="icon5.png"/>
12 </defs>
13 <html:link rel="shortcut icon" href="icon6.png"/>
14 <script>
15 <![CDATA[
16 if (window.testRunner)
17 testRunner.dumpAsText();
18 let icons = internals.shortcutIconURLs(document);
19 let passed = icons.length === 6 &&
20 icons[0].endsWith('icon6.png') &&
21 icons[1].endsWith('icon5.png') &&
22 icons[2].endsWith('icon4.png') &&
23 icons[3].endsWith('icon3.png') &&
24 icons[4].endsWith('icon2.png') &&
25 icons[5].endsWith('icon1.png');
26 let resultNode = document.querySelector('text');
27 resultNode.textContent = passed ? "PASS" : "FAIL";
28 ]]>
29 </script>
30 </svg>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/svg/custom/favicon-link-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698