| Index: LayoutTests/fast/block/float/override-property-float.html
|
| diff --git a/LayoutTests/fast/block/float/override-property-float.html b/LayoutTests/fast/block/float/override-property-float.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0e0117684310c8e958d040060fd4e14a798c9b04
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/block/float/override-property-float.html
|
| @@ -0,0 +1,23 @@
|
| +<!doctype html>
|
| +<html>
|
| +<head>
|
| +<script src="../../../resources/js-test.js"></script>
|
| +<style>
|
| + #test {
|
| + width:100px;
|
| + height:100px;
|
| + background:green;
|
| + float:right;
|
| + float:center;
|
| + }
|
| +</style>
|
| +</head>
|
| +<body>
|
| + <div id="test">TEXT</div>
|
| +</body>
|
| +<script>
|
| +description('If this test passes, the green box should be on the right side of page.');
|
| +var element = document.getElementById('test');
|
| +shouldBeEqualToString('window.getComputedStyle(element, null).getPropertyValue("float")', 'right');
|
| +</script>
|
| +</html>
|
|
|