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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/markers/marker-orientation-set.html

Issue 1699893003: setOrientTo{Auto|Angle} should reflect on orient attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed nits Created 4 years, 10 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/Source/core/svg/SVGMarkerElement.cpp » ('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/testharness.js"></script>
3 <script src="../../resources/testharnessreport.js"></script>
4 <script>
5 test(function() {
6 var svgElement = document.createElementNS("http://www.w3.org/2000/svg","svg" );
7 var markerElement = document.createElementNS("http://www.w3.org/2000/svg","m arker");
8 var svgAngle = svgElement.createSVGAngle();
9 svgAngle.value = 10;
10 markerElement.setOrientToAngle(svgAngle);
11 assert_equals(markerElement.getAttribute("orient"), "10");
12 }, "Tests with setOrientToAngle");
fs 2016/02/22 11:43:31 Maybe more descriptive as "getAttribute('orient')
Shanmuga Pandi 2016/02/22 11:50:09 Done.
13
14 test(function() {
15 var markerElement = document.createElementNS("http://www.w3.org/2000/svg","m arker");
16 markerElement.setOrientToAuto();
17 assert_equals(markerElement.getAttribute("orient"), "auto");
18 }, "Tests with setOrientToAuto");
fs 2016/02/22 11:43:31 Ditto.
Shanmuga Pandi 2016/02/22 11:50:09 Done.
19 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/svg/SVGMarkerElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698