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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/clip-path/clip-path-visible-element-as-visible-shape-element.html

Issue 2375043002: Fix up that no render SVG shape when change clip-path to visible after hidden. (Closed)
Patch Set: Fix up that no render SVG shape when change clip-path to visible after hidden. Created 3 years, 9 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/clip-path/clip-path-visible-element-as-visible-shape-element-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
(Empty)
1 <!DOCTYPE HTML>
2 <script src=../../resources/run-after-layout-and-paint.js></script>
3 <script>
4 if (window.testRunner)
5 testRunner.waitUntilDone();
6
7 window.onload = function () {
8 runAfterLayoutAndPaint(function() {
9 container.style.visibility = "visible";
10 runAfterLayoutAndPaint(function() {
11 container.style.visibility = "hidden";
12 runAfterLayoutAndPaint(function() {
13 container.style.visibility = "visible";
14 if (window.testRunner)
15 testRunner.notifyDone();
16 });
17 });
18 });
19 }
20 </script>
21 <div id="container" style="visibility: hidden">
22 <svg>
23 <clipPath id="clip">
24 <rect width="100" height="100"></rect>
25 </clipPath>
26 <rect width="400" height="400" fill="green" visibility="visible" clip-path=" url(#clip)"></rect>
27 </svg>
28 </div>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/svg/clip-path/clip-path-visible-element-as-visible-shape-element-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698