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

Side by Side Diff: LayoutTests/svg/custom/stale-resource-data-crash.svg

Issue 183703003: Remove more testRunner.display() calls from LayoutTests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Ditch fast/text/font-initial changes too Created 6 years, 9 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 <?xml version="1.0" encoding="UTF-8"?>
2 <svg id="svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.or g/2000/svg">
3 <defs id="defs">
4 <filter id="f1">
5 <feDiffuseLighting>
6 <feDistantLight azimuth="45" id="light"/>
7 </feDiffuseLighting>
8 </filter>
9 <filter id="f2"/>
10 </defs>
11 <image id="img" filter="url(#f1)" xlink:href="data:image/png;base64,iVBORw0KGg oAAAANSUhEUgAAAAoAAAAKCAIAAAACUFjqAAAADUlEQVQY02NgGAWkAwABNgABGtWNFwAAAABJRU5Erk Jggg=="/>
12
13 <text>PASS: did not crash.</text>
14
15 <script>
16 f2 = document.getElementById('f2');
17 docElement = document.getElementById('svg');
18 light = document.getElementById('light');
19 newDefs = document.getElementById('defs').cloneNode(true);
20
21 if (window.testRunner) {
22 testRunner.dumpAsText();
23 // Force a paint at this point to generate cached filter results.
24 testRunner.display();
25 }
26
27 docElement.appendChild(newDefs);
28 docElement.appendChild(f2);
29 docElement.offsetTop;
30 light.removeAttribute('azimuth');
31 </script>
32 </svg>
OLDNEW
« no previous file with comments | « LayoutTests/svg/custom/non-scaling-stroke-update.svg ('k') | LayoutTests/transitions/position-background-transition.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698