Index: LayoutTests/fast/dom/setPrimitiveValue.html |
diff --git a/LayoutTests/fast/dom/setPrimitiveValue.html b/LayoutTests/fast/dom/setPrimitiveValue.html |
deleted file mode 100644 |
index 4ff0505b8c802a6b7cca935ecb5eba1c447014d8..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/setPrimitiveValue.html |
+++ /dev/null |
@@ -1,46 +0,0 @@ |
-<html> |
-<head> |
-<style> |
-div.test { |
- position: absolute; |
- left: 250px; |
- top: 100px; |
-} |
-</style> |
-<script> |
- |
-if (window.testRunner) |
- testRunner.dumpAsText(); |
- |
-function runTest() |
-{ |
- var helloText = document.getElementById("hello"); |
- var positionField = document.getElementById("style position"); |
- var position = 50.0; |
- |
- var textRule = document.styleSheets[0].cssRules[0]; |
- var s = textRule.style; |
- var leftValue = s.getPropertyCSSValue("left"); |
- var console = document.getElementById("console"); |
- |
- try |
- { |
- leftValue.setFloatValue(leftValue.primitiveType, parseFloat(position)); |
- } |
- catch (e) |
- { |
- var line = document.createElement("div"); |
- line.innerText = "setFloatValue " + e.message; |
- console.appendChild(line); |
- } |
-} |
- |
-</script> |
-</head> |
-<body onload="runTest();"> |
-Test CSSPrimitiveValue setters. |
-<div class="test" id="hello"></div> |
-<pre id="console"></pre> |
-</body> |
-</html> |
- |