Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-pseudo/file-selector-button-display-toggle-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>Shouldn't assert when re-creating a ::file-selector-button pseudo-element after it being display: none</title>
<style>
.tweak::file-selector-button {
display: none;
}
</style>
<input type="file">
<script>
let input = document.querySelector("input");
input.getBoundingClientRect().top;
input.classList.add("tweak");
input.getBoundingClientRect().top;
input.classList.remove("tweak");
</script>