Title: [152739] trunk/Source/WebCore
Revision
152739
Author
[email protected]
Date
2013-07-16 14:02:59 -0700 (Tue, 16 Jul 2013)

Log Message

Use the correct cursor value for the unavailable plugin indicator
https://bugs.webkit.org/show_bug.cgi?id=118747
<rdar://problem/14456498>

Reviewed by Dean Jackson.

CSS says "pointer" is the hand cursor, not "hand".

* css/unavailablePlugIns.css:
(object::-webkit-unavailable-plugin-content > div):
(object::-webkit-unavailable-plugin-content > div > span):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (152738 => 152739)


--- trunk/Source/WebCore/ChangeLog	2013-07-16 20:37:29 UTC (rev 152738)
+++ trunk/Source/WebCore/ChangeLog	2013-07-16 21:02:59 UTC (rev 152739)
@@ -1,3 +1,17 @@
+2013-07-16  Tim Horton  <[email protected]>
+
+        Use the correct cursor value for the unavailable plugin indicator
+        https://bugs.webkit.org/show_bug.cgi?id=118747
+        <rdar://problem/14456498>
+
+        Reviewed by Dean Jackson.
+
+        CSS says "pointer" is the hand cursor, not "hand".
+
+        * css/unavailablePlugIns.css:
+        (object::-webkit-unavailable-plugin-content > div):
+        (object::-webkit-unavailable-plugin-content > div > span):
+
 2013-07-16  Simon Fraser  <[email protected]>
 
         Protect against the LayerFlushController being deleted inside its flushLayers() callback

Modified: trunk/Source/WebCore/css/unavailablePlugIns.css (152738 => 152739)


--- trunk/Source/WebCore/css/unavailablePlugIns.css	2013-07-16 20:37:29 UTC (rev 152738)
+++ trunk/Source/WebCore/css/unavailablePlugIns.css	2013-07-16 21:02:59 UTC (rev 152739)
@@ -62,7 +62,7 @@
 
     opacity: 0.8;
 
-    cursor: hand;
+    cursor: pointer;
 }
 
 embed::-webkit-unavailable-plugin-content > div > span,
@@ -81,7 +81,7 @@
     padding: 2px 4px 3px 4px;
     margin-bottom: 1px;
 
-    cursor: hand;
+    cursor: pointer;
 }
 
 embed::-webkit-unavailable-plugin-content > div > img,
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to