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

Side by Side Diff: LayoutTests/svg/filters/fePointLight-primitiveUnits-objectBoundingBox-animated.html

Issue 395813002: Resolve light-source position/direction when updated (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/svg/filters/fePointLight-primitiveUnits-objectBoundingBox-animated-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-display.js"></script>
3 <script>
4 if (window.testRunner)
5 testRunner.waitUntilDone();
6
7 window.onload = function() {
8 // Wait for a frame, then trigger animation.
9 runAfterDisplay(function() {
10 document.querySelector('set').beginElement();
11 if (window.testRunner)
12 runAfterDisplay(function() { testRunner.notifyDone(); });
13 });
14 };
15 </script>
16 <svg>
17 <filter id="f" primitiveUnits="objectBoundingBox" x="0" y="0" width="1" height ="1">
18 <feDiffuseLighting lighting-color="green">
19 <fePointLight x="0.5" y="0.5" z="-0.5">
20 <set attributeName="z" to="10" begin="indefinite"/>
21 </fePointLight>
22 </feDiffuseLighting>
23 </filter>
24 <rect width="100" height="100" fill="red" filter="url(#f)"/>
25 </svg>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/filters/fePointLight-primitiveUnits-objectBoundingBox-animated-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698