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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/text/adding-id-on-pending-path.html

Issue 1812493002: If add 'id' on pending SVG resource references does not work for non-resources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <div>
fs 2016/03/17 17:27:33 Not needed.
hyunjunekim2 2016/03/18 07:44:06 Done.
3 <svg>
4 <path d="M0,20h100" fill="none"/>
5 <text><textPath xlink:href="#path">PASS</textPath></text>
6 </svg>
7 </div>
8 <script>
9 if (window.testRunner)
10 testRunner.waitUntilDone();
11
12 setTimeout(function() {
fs 2016/03/17 17:27:33 It'd probably be preferable to use runAfterLayoutA
hyunjunekim2 2016/03/18 07:44:06 Done.
13 document.querySelector('path').id = 'path';
14 if (window.testRunner)
15 testRunner.notifyDone();
16 }, 0);
17 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698