Autofocus inputs don't always honor selector input:focus.
https://bugs.webkit.org/show_bug.cgi?id=24093

Already fixed and works on TOT. Adding layout test case for the same.

Patch by Kaustubh Atrawalkar <kaustubh@motorola.com> on 2011-11-08
Reviewed by Kent Tamura.

* fast/forms/autofocus-input-css-style-change-expected.txt: Added.
* fast/forms/autofocus-input-css-style-change.html: Added.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@99582 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/fast/forms/autofocus-input-css-style-change.html b/LayoutTests/fast/forms/autofocus-input-css-style-change.html
new file mode 100644
index 0000000..79c7771
--- /dev/null
+++ b/LayoutTests/fast/forms/autofocus-input-css-style-change.html
@@ -0,0 +1,21 @@
+<!DOCYTPE html>
+<html>
+<style>
+input { background: red; }
+input:focus { background: green; }
+</style>
+<body>
+<p>The following text box should have focus and should be green.</p>
+<input type="text" id="test" autofocus>
+<div id="result">FAIL</div>
+<script>
+if (window.layoutTestController) {
+    layoutTestController.dumpAsText();
+}
+
+var test = document.getElementById("test");
+if (document.defaultView.getComputedStyle(test, null).getPropertyValue('background-color') == "rgb(0, 128, 0)")
+    result.innerHTML = "PASS";
+</script>
+</body>
+</html>