text-combine-webkit-crash.html (593B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8"/> 5 <title>text-combine-upright and -webkit-text-combine do not crash when used together</title> 6 <link rel="author" title="Steinar H. Gunderson" href="mailto:sesse@chromium.org"/> 7 <link rel="help" href="https://crbug.com/1355087"/> 8 <body> 9 <div id="div"></div> 10 <script> 11 div.style.setProperty("-webkit-text-combine", "none"); 12 div.style.setProperty("text-combine-upright", "all"); 13 div.style.setProperty("background-color", "white"); 14 div.offsetTop; 15 div.style.setProperty("background-color", "black"); 16 </script> 17 </body> 18 </html>