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

Side by Side Diff: LayoutTests/svg/webarchive/svg-cursor-subresources.svg

Issue 14046041: Remove webarchive tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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
(Empty)
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k">
2 <cursor id="mycursor" xlink:href="resources/green-checker.png" />
3 <rect style="cursor: url(#mycursor)" width="100" height="100" fill="white" str oke="blue" />
4
5 <text x="10" y="130">Hover over the rect, you should see a (large) custom curs or</text>
6 <script>
7 if (window.testRunner) {
8 testRunner.waitUntilDone();
9
10 setTimeout(function() {
11 testRunner.dumpDOMAsWebArchive();
12 testRunner.notifyDone();
13 }, 0);
14 }
15 </script>
16 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698