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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/dom/references-in-shadow-trees.html

Issue 2751433002: [SPv2] Flatten property trees in PaintRecordBuilder into a single display list. (Closed)
Patch Set: none Created 3 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <svg style="display:none;"> 2 <svg style="display:none;">
3 <rect id="useReference" width="200" height="200" fill="red" /> 3 <rect id="useReference" width="200" height="200" fill="red" />
4 <path id="pathReference1" d="M0 160 L 100 160" /> 4 <path id="pathReference1" d="M0 160 L 100 160" />
5 <path id="pathReference2" d="M1000 1000 L 2000 2000" /> 5 <path id="pathReference2" d="M1000 1000 L 2000 2000" />
6 <rect id="filteredRectReference" width="100" height="100" fill="red" /> 6 <rect id="filteredRectReference" width="100" height="100" fill="red" />
7 <pattern id="patternReference" width="100" height="100" viewBox="0 0 100 100 "> 7 <pattern id="patternReference" width="100" height="100" viewBox="0 0 100 100 ">
8 <rect width="100" height="20" fill="red"/> 8 <rect width="100" height="20" fill="red"/>
9 </pattern> 9 </pattern>
10 </svg> 10 </svg>
(...skipping 15 matching lines...) Expand all
26 <text> 26 <text>
27 <textPath xlink:href="#pathReference1" fill="red" font-size="40px">F AIL</textPath> 27 <textPath xlink:href="#pathReference1" fill="red" font-size="40px">F AIL</textPath>
28 <textPath xlink:href="#pathReference2" fill="green" font-size="40px" >PASS</textPath> 28 <textPath xlink:href="#pathReference2" fill="green" font-size="40px" >PASS</textPath>
29 </text> 29 </text>
30 <rect width="200" height="300" fill="red" filter="url(#filterReference)" /> 30 <rect width="200" height="300" fill="red" filter="url(#filterReference)" />
31 <rect y="300" width="100" height="100" fill="url(#patternReference)" /> 31 <rect y="300" width="100" height="100" fill="url(#patternReference)" />
32 </svg> 32 </svg>
33 </template> 33 </template>
34 <script> 34 <script>
35 document.body.createShadowRoot().appendChild(template.content.cloneNode(true )); 35 document.body.createShadowRoot().appendChild(template.content.cloneNode(true ));
36 </script> 36 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698