* fast/css/emptyStyleTag-expected.txt: Added.
* fast/css/emptyStyleTag.html: Added.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@25083
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-08-14 Beth Dakin <bdakin@apple.com>
+
+ Test for new support of empty style sheets.
+
+ * fast/css/emptyStyleTag-expected.txt: Added.
+ * fast/css/emptyStyleTag.html: Added.
+
2007-08-14 Justin Garcia <justin.garcia@apple.com>
Reviewed by Tim.
--- /dev/null
+This tests that we support empty style sheets.
+Test succeeded!
--- /dev/null
+<style></style>
+
+This tests that we support empty style sheets.
+
+<div id="result">Test failed.</div>
+
+<script>
+if (layoutTestController)
+ layoutTestController.dumpAsText();
+
+if (document.styleSheets[0]) {
+ var result = document.getElementById("result");
+ result.innerHTML = "Test succeeded!";
+}
+</script>
+