event-on-pseudo-element-crash.html (550B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <link rel="author" href="mailto:masonf@chromium.org"> 4 <link rel="help" href="https://crbug.com/1180286"> 5 <meta name="assert" content="The renderer should not crash."> 6 7 <span>This test passes if the renderer does not crash.</span> 8 9 <div> 10 <option></option> 11 </div> 12 13 <style> 14 div { 15 direction: rtl; 16 zoom: 0.01; 17 } 18 option { 19 zoom: 5; 20 } 21 option::before { 22 display: table-caption; 23 overflow: scroll; 24 content: open-quote; 25 padding-right: 1px; 26 -webkit-column-width: 1px; 27 } 28 </style>