Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / crash-inherit-value-font-family.html
blob100a04174ea2b3de784f5fa34f62a1ccfed3f6e1
1 <!DOCTYPE html>
2 <body>
3 <var style="float: right; -webkit-border-before: groove; font-family: inherit"></var>
5 <script>
6 if (window.testRunner)
7 testRunner.dumpAsText();
9 document.body.offsetTop;
10 document.designMode="on";
11 document.execCommand("SelectAll");
12 document.execCommand("InsertImage", false);
13 document.execCommand("InsertOrderedList");
14 document.body.innerHTML = "crbug.com/279286: ASSERT: Bad cast from CSSInitialValue to CSSValueList<br>This test has passed if it doesn't crash";
15 </script>