Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /svg/text/scripted/reattach-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Chrome had a crash on dynamic style changes on <text></title>
<style>
#el9 {
background-color: blue;
}
.c3 {
transition-duration:0.2s;
background-color: red !important;
content: '';
}
</style>
<script>
onload = function() {
document.body.offsetTop;
el9.setAttribute('class', 'c3');
document.body.offsetTop;
};
</script>
<body>
</body>