Modifications to the tests for default bidi css properties from Webkit. Bug 706194, r=dbaron, a=tests-only

This commit is contained in:
Simon Montagu 2012-04-23 11:49:15 +03:00
parent 9a71f9d9c2
commit 467078ba53

View File

@ -35,7 +35,7 @@ var tests = [
['span', {'dir': 'ltr'}, 'ltr', 'embed'],
['span', {'dir': 'rtl'}, 'rtl', 'embed'],
['span', {'dir': 'auto'}, 'ltr', '-moz-isolate'],
['span', {'dir': ''}, 'ltr', 'embed'],
['span', {'dir': ''}, 'ltr', 'normal'],
['bdi', {}, 'ltr', '-moz-isolate'],
['bdi', {'dir': 'ltr'}, 'ltr', '-moz-isolate'],
@ -59,7 +59,7 @@ var tests = [
['textarea', {'dir': 'ltr'}, 'ltr', 'embed'],
['textarea', {'dir': 'rtl'}, 'rtl', 'embed'],
['textarea', {'dir': 'auto'}, 'ltr', '-moz-plaintext'],
['textarea', {'dir': ''}, 'ltr', 'embed'],
['textarea', {'dir': ''}, 'ltr', 'normal'],
['pre', {}, 'ltr', '-moz-isolate'],
['pre', {'dir': 'ltr'}, 'ltr', '-moz-isolate'],