summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/css-set-selector-text-crash.html
blob: cfc40c582156d5290e26ba9635ba81f67c09f833 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
<style>
:target { top: 0; }
</style>
<script>
if (window.testRunner)
    testRunner.dumpAsText();

document.styleSheets[0].cssRules[0].selectorText = ':target';
</script>
Test passes if it does not crash.
</html>