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

Unified Diff: LayoutTests/svg/dynamic-updates/script-tests/SVGFESpotLightElement-svgdom-x-prop.js

Issue 181943003: Scaling and offset fix for FELighting (software and skia paths) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Changed fix to temporary light creation Created 6 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/svg/dynamic-updates/script-tests/SVGFESpotLightElement-svgdom-x-prop.js
diff --git a/LayoutTests/svg/dynamic-updates/script-tests/SVGFESpotLightElement-svgdom-x-prop.js b/LayoutTests/svg/dynamic-updates/script-tests/SVGFESpotLightElement-svgdom-x-prop.js
index b451714ed76736fab76ee100fe3dd8d8962e2e72..198dc8d32b42fe8b20d4878899a1250d92e4feb0 100644
--- a/LayoutTests/svg/dynamic-updates/script-tests/SVGFESpotLightElement-svgdom-x-prop.js
+++ b/LayoutTests/svg/dynamic-updates/script-tests/SVGFESpotLightElement-svgdom-x-prop.js
@@ -5,11 +5,11 @@ description("Tests dynamic updates of the 'x' property of the SVGFESpotLightElem
createSVGTestCase();
var spotLightElement = createSVGElement("feSpotLight");
-spotLightElement.setAttribute("x", "0");
-spotLightElement.setAttribute("y", "0");
+spotLightElement.setAttribute("x", "-30");
+spotLightElement.setAttribute("y", "-30");
spotLightElement.setAttribute("z", "100");
-spotLightElement.setAttribute("pointsAtX", "113");
-spotLightElement.setAttribute("pointsAtY", "100");
+spotLightElement.setAttribute("pointsAtX", "83");
+spotLightElement.setAttribute("pointsAtY", "70");
spotLightElement.setAttribute("pointsAtZ", "0");
spotLightElement.setAttribute("specularExponent", "1");
spotLightElement.setAttribute("limitingConeAngle", "15");
@@ -38,11 +38,11 @@ rectElement.setAttribute("height", "200");
rectElement.setAttribute("filter", "url(#myFilter)");
rootSVGElement.appendChild(rectElement);
-shouldBe("spotLightElement.x.baseVal", "0");
+shouldBe("spotLightElement.x.baseVal", "-30");
function repaintTest() {
- spotLightElement.x.baseVal = 113;
- shouldBe("spotLightElement.x.baseVal", "113");
+ spotLightElement.x.baseVal = 83;
+ shouldBe("spotLightElement.x.baseVal", "83");
completeTest();
}

Powered by Google App Engine
This is Rietveld 408576698