Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | <!-- |
michael@0 | 2 | Any copyright is dedicated to the Public Domain. |
michael@0 | 3 | http://creativecommons.org/publicdomain/zero/1.0/ |
michael@0 | 4 | --> |
michael@0 | 5 | <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> |
michael@0 | 6 | <title>Reference for objectBoundingBox with fePointLight</title> |
michael@0 | 7 | <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=544742 --> |
michael@0 | 8 | |
michael@0 | 9 | <defs> |
michael@0 | 10 | <filter id="light" primitiveUnits="userSpaceOnUse"> |
michael@0 | 11 | <feSpecularLighting lighting-color="blue" surfaceScale="5" specularConstant="10" specularExponent="6"> |
michael@0 | 12 | <fePointLight x="30" y="30" z="-5"/> |
michael@0 | 13 | </feSpecularLighting> |
michael@0 | 14 | <feComposite operator="in" in2="SourceGraphic"/> |
michael@0 | 15 | </filter> |
michael@0 | 16 | </defs> |
michael@0 | 17 | |
michael@0 | 18 | <g transform="translate(20 20)"> |
michael@0 | 19 | <rect width="40" height="20" filter="url(#light)" fill="black" stroke="none"/> |
michael@0 | 20 | </g> |
michael@0 | 21 | |
michael@0 | 22 | </svg> |
michael@0 | 23 |