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

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

Issue 2251073002: CSS: SVG use elements replicate updates to style (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: instance not <use> subtree 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 <html>
3 <head>
4 <meta charset="utf-8">
5 <style>
6 rect {
7 fill: green;
8 }
9 </style>
10 </head>
11 <body>
12 <svg width="50" height="50">
13 <use xlink:href="#main"></use>
14 </svg>
15 <svg id="main" width="100" height="100">
16 <g>
17 <rect x="0" y="0" width="100" height="100"></rect>
18 </g>
19 </svg>
20 </body>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698