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

Side by Side Diff: LayoutTests/svg/animations/svg-tests-on-smil-elements.html

Issue 1108293002: Make DOMImplementation.hasFeature() always return true. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: windows compilefix attempt Created 5 years, 7 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 <svg>
3 <rect id="#reference" x="10" y="10" width="10" height="10" style="fill: red"/>
4 <rect id="#target" x="10" y="0" width="10" height="10" style="fill: gree n">
5 <set attributeName="y" attributeType="XML" to="10" begin="0s" dur="1s" f ill="freeze" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Shape" />
6 <set attributeName="x" attributeType="XML" to="20" begin="0s" dur="1s" f ill="freeze" requiredFeatures="http://www.w3.org/TR/SVG11/feature#BogusFeature" />
7 </rect>
8 </svg>
9 <script>
10 document.querySelector("svg").setCurrentTime(0.5);
11 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698