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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/text/text-collapsed-ws-remove-textnode.html

Issue 1872513005: Add test for metrics invalidation on textnode removal (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/svg/text/text-collapsed-ws-remove-textnode-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script src="../../resources/run-after-layout-and-paint.js"></script>
2 <svg> 3 <svg>
3 <path d="M0,20h100" fill="none"/> 4 <text y="20">Foo<tspan> </tspan> bar</text>
4 <text><textPath xlink:href="#path">PASS</textPath></text>
5 </svg> 5 </svg>
6 <script src="../../resources/run-after-layout-and-paint.js"></script>
7 <script> 6 <script>
8 runAfterLayoutAndPaint(function() { 7 runAfterLayoutAndPaint(function() {
9 document.querySelector('path').id = 'path'; 8 document.querySelector('tspan').firstChild.remove();
10 }, true); 9 }, true);
11 </script> 10 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/svg/text/text-collapsed-ws-remove-textnode-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698