Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-overflow/outline-with-opacity-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Philip Rogers" href="mailto:pdr@chromium.org">
<span id="target" style="outline: 1px solid black; will-change: opacity; opacity: 0.7;">test</span>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(()=> {
target.style.background = "lightblue";
}, "no crash");
</script>