summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/crash-inherit-value-font-family.html
blob: 100a04174ea2b3de784f5fa34f62a1ccfed3f6e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<body>
<var style="float: right; -webkit-border-before: groove; font-family: inherit"></var>

<script>
    if (window.testRunner)
        testRunner.dumpAsText();

    document.body.offsetTop;
    document.designMode="on";
    document.execCommand("SelectAll");
    document.execCommand("InsertImage", false);
    document.execCommand("InsertOrderedList");
    document.body.innerHTML = "crbug.com/279286: ASSERT: Bad cast from CSSInitialValue to CSSValueList<br>This test has passed if it doesn't crash";
</script>