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/column-scroll-marker-no-content-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>::column::scroll-marker without content should not crash</title>
<style>
#container {
overflow: hidden;
width: 10px;
column-count: 1;
scroll-marker-group: before;
}
#container::column::scroll-marker {
display: inline;
}
</style>
<p>PASS if no crash.</p>
<div id="container">Two columns</div>