| OLD | NEW |
| 1 <?xml version="1.0" encoding="UTF-8"?> | 1 <?xml version="1.0" encoding="UTF-8"?> |
| 2 <svg id="svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.or
g/2000/svg"> | 2 <svg id="svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.or
g/2000/svg"> |
| 3 <defs id="defs"> | 3 <defs id="defs"> |
| 4 <filter id="f1"> | 4 <filter id="f1"> |
| 5 <feDiffuseLighting> | 5 <feDiffuseLighting> |
| 6 <feDistantLight azimuth="45" id="light"/> | 6 <feDistantLight azimuth="45" id="light"/> |
| 7 </feDiffuseLighting> | 7 </feDiffuseLighting> |
| 8 </filter> | 8 </filter> |
| 9 <filter id="f2"/> | 9 <filter id="f2"/> |
| 10 </defs> | 10 </defs> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 // Force a paint at this point to generate cached filter results. | 23 // Force a paint at this point to generate cached filter results. |
| 24 testRunner.display(); | 24 testRunner.display(); |
| 25 } | 25 } |
| 26 | 26 |
| 27 docElement.appendChild(newDefs); | 27 docElement.appendChild(newDefs); |
| 28 docElement.appendChild(f2); | 28 docElement.appendChild(f2); |
| 29 docElement.offsetTop; | 29 docElement.offsetTop; |
| 30 light.removeAttribute('azimuth'); | 30 light.removeAttribute('azimuth'); |
| 31 </script> | 31 </script> |
| 32 </svg> | 32 </svg> |
| OLD | NEW |