WebKit Bugzilla
Attachment 348805 Details for
Bug 189256
: feFlood with explicit size in CSS filter doesn't render
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
Testcase
reference-filter-set-filter-regions.html (text/html), 806 bytes, created by
Simon Fraser (smfr)
on 2018-09-03 21:59:52 PDT
(
hide
)
Description:
Testcase
Filename:
MIME Type:
Creator:
Simon Fraser (smfr)
Created:
2018-09-03 21:59:52 PDT
Size:
806 bytes
patch
obsolete
><head> > <style> > .box { > width: 100px; > height: 100px; > background-color: green; > filter: url(#filter); > } > > svg { >/* display: none; /* Flips behavior in Firefox and Safari! */*/ > } > </style> > <script> > function doTest() > { > var box = document.getElementById('box'); > box.classList.add('animating'); > } > window.addEventListener('load', doTest, false); > </script> ></head> ><body> > <svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" version="1.1"> > <defs> > <filter id="filter"> > <feFlood x="0" y="0" width="400" height="400" flood-color="green" /> > </filter> > </defs> > </svg> > > <div id="box" class="box"></div> ></body>
<head> <style> .box { width: 100px; height: 100px; background-color: green; filter: url(#filter); } svg { /* display: none; /* Flips behavior in Firefox and Safari! */*/ } </style> <script> function doTest() { var box = document.getElementById('box'); box.classList.add('animating'); } window.addEventListener('load', doTest, false); </script> </head> <body> <svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" version="1.1"> <defs> <filter id="filter"> <feFlood x="0" y="0" width="400" height="400" flood-color="green" /> </filter> </defs> </svg> <div id="box" class="box"></div> </body>
View Attachment As Raw
Actions:
View
Attachments on
bug 189256
: 348805 |
465833