OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <script src='../../resources/testharness.js'></script> | |
3 <script src='../../resources/testharnessreport.js'></script> | |
4 <script> | |
5 test(() => { | |
6 let slot = document.createElement("slot"); | |
7 // This could cause crash. See crbug.com/627385 | |
8 slot.setAttribute("dir", "auto"); | |
9 assert_true(true, 'This test must run without crash.'); | |
10 }, "HTMLSlotElement's dir attribute should not be used until Blink supports slot s in a flat tree."); | |
11 </script> | |
OLD | NEW |