4 Test that text-align:-webkit-match-parent is parsed correctly. The test passes if the text
"PASS" is displayed below.
9 testRunner
.dumpAsText();
11 var testDiv
= document
.getElementById('test_div');
12 testDiv
.style
.cssText
= 'text-align:-webkit-match-parent';
13 if (testDiv
.style
.textAlign
== "-webkit-match-parent")
14 document
.write("PASS");
16 document
.write("FAIL");