blob: af14dc80962c4264157a1cc8e7b2a460e15bc2e5 [file]
<!DOCTYPE html>
<html>
<body>
<script src="../../resources/js-test.js"></script>
<div id="testDivInvalid" style="font: caption icon"></div>
<div id="testDivValid" style="font: caption"></div>
<script>
description("Tests 'font' CSS property parsing with system font values.")
shouldBeEqualToString("testDivInvalid.style.getPropertyValue('font')", "")
shouldBeEqualToString("testDivValid.style.getPropertyValue('font')", "caption")
shouldBeEqualToString("testDivInvalid.style.getPropertyValue('font-family')", "")
shouldBeEqualToString("testDivValid.style.getPropertyValue('font-family')", "")
</script>
</body>
</html>