From 0ed5f724c417149c6ceb468e4ebc11a33504cf13 Mon Sep 17 00:00:00 2001 From: "mitz@apple.com" Date: Tue, 13 Nov 2007 22:14:04 +0000 Subject: [PATCH] Reviewed by Beth Dakin. - fix REGRESSION: Cursor does not change to arrow on "X" button in google maps, making it hard to click * css/html4.css: Added a 'cursor: auto' rule for links. * manual-tests/link-cursor-auto.html: Added. git-svn-id: https://svn.webkit.org/repository/webkit/trunk@27761 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- WebCore/ChangeLog | 9 ++++++++ WebCore/css/html4.css | 1 + WebCore/manual-tests/link-cursor-auto.html | 24 ++++++++++++++++++++++ 3 files changed, 34 insertions(+) create mode 100644 WebCore/manual-tests/link-cursor-auto.html diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog index 7d693a0da6bc..22cb27e21e2f 100644 --- a/WebCore/ChangeLog +++ b/WebCore/ChangeLog @@ -1,3 +1,12 @@ +2007-11-13 Dan Bernstein + + Reviewed by Beth Dakin. + + - fix REGRESSION: Cursor does not change to arrow on "X" button in google maps, making it hard to click + + * css/html4.css: Added a 'cursor: auto' rule for links. + * manual-tests/link-cursor-auto.html: Added. + 2007-11-13 Dan Bernstein Reviewed by Beth Dakin. diff --git a/WebCore/css/html4.css b/WebCore/css/html4.css index 566466e5d5a1..ff1f60677d8e 100644 --- a/WebCore/css/html4.css +++ b/WebCore/css/html4.css @@ -564,6 +564,7 @@ input[type="file"]:focus::-webkit-file-upload-button { a:-webkit-any-link { color: -webkit-link; text-decoration: underline; + cursor: auto; } a:-webkit-any-link:active { diff --git a/WebCore/manual-tests/link-cursor-auto.html b/WebCore/manual-tests/link-cursor-auto.html new file mode 100644 index 000000000000..b978b4bc812b --- /dev/null +++ b/WebCore/manual-tests/link-cursor-auto.html @@ -0,0 +1,24 @@ + + + + + +

BUG ID: 5551163 REGRESSION: Cursor does not change to arrow on "X" button in google maps, making it hard to click

+ +

STEPS TO TEST: +Move the mouse over the link below. +

+ +

TEST PASS: +The mouse pointer will change to an index finger. +

+ +

TEST FAIL: +The mouse pointer will change to a wristwatch. +

+ +This is the link + + + -- 2.36.0