Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /scroll-animations/view-timelines/subject-br-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<!-- crbug.com/1470522 --->
<script>
function main() {
var b = document.createElement("br");
document.body.append(b);
new ViewTimeline({ subject: b });
}
</script>
<body onload=main()>
</body>
</html>