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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/css/use-replicates-changes-inline.html

Issue 2251073002: CSS: SVG use elements replicate updates to style (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tidy Created 4 years, 4 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 <script src="../../resources/run-after-layout-and-paint.js"></script>
3 <style>
4 rect {
5 fill: red;
6 }
7 </style>
8 <svg width="100" height="100">
9 <g>
10 <use xlink:href="#r"></use>
11 </g>
12 <defs>
13 <rect id="r" x="0" y="0" width="100" height="100"></rect>
14 </defs>
15 </svg>
16 <script>
17 runAfterLayoutAndPaint(function() {
18 r.style.fill = 'green';
19 }, true);
20 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698