Chromium Code Reviews

Side by Side Diff: third_party/WebKit/LayoutTests/svg/text/text-positioning-mutate-textnode.html

Issue 1854123002: Rebuild layout attributes on layout instead of on layout tree updates (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.
Jump to:
View unified diff |
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../../resources/run-after-layout-and-paint.js"></script>
3 <svg width="400px" height="400px">
4 <text font-size="40">
5 <tspan dy="40">1</tspan>
6 <tspan dy="40">4</tspan>
7 </text>
8 </svg>
9 <script>
10 runAfterLayoutAndPaint(function() {
11 var tspans = document.querySelectorAll('tspan');
12 tspans[0].textContent = '123';
13 tspans[1].textContent = '456';
14 }, true);
15 </script>
OLDNEW

Powered by Google App Engine