Title: [128202] trunk/Source/WebKit2
Revision
128202
Author
[email protected]
Date
2012-09-11 10:29:54 -0700 (Tue, 11 Sep 2012)

Log Message

Fix speling error in comment.

* WebProcess/Plugins/Netscape/NetscapePlugin.cpp:
(WebKit::isTransparentSilverlightBackgroundValue):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (128201 => 128202)


--- trunk/Source/WebKit2/ChangeLog	2012-09-11 17:21:57 UTC (rev 128201)
+++ trunk/Source/WebKit2/ChangeLog	2012-09-11 17:29:54 UTC (rev 128202)
@@ -1,3 +1,10 @@
+2012-09-11  Anders Carlsson  <[email protected]>
+
+        Fix speling error in comment.
+
+        * WebProcess/Plugins/Netscape/NetscapePlugin.cpp:
+        (WebKit::isTransparentSilverlightBackgroundValue):
+
 2012-09-11  Raphael Kubo da Costa  <[email protected]>
 
         [EFL] Rewrite the EFL-related Find modules

Modified: trunk/Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.cpp (128201 => 128202)


--- trunk/Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.cpp	2012-09-11 17:21:57 UTC (rev 128201)
+++ trunk/Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.cpp	2012-09-11 17:29:54 UTC (rev 128202)
@@ -565,7 +565,7 @@
 static bool isTransparentSilverlightBackgroundValue(const String& lowercaseBackgroundValue)
 {
     // This checks if the background color value is transparent, according to
-    // the forumat documented at http://msdn.microsoft.com/en-us/library/cc838148(VS.95).aspx
+    // the format documented at http://msdn.microsoft.com/en-us/library/cc838148(VS.95).aspx
     if (lowercaseBackgroundValue.startsWith('#')) {
         if (lowercaseBackgroundValue.length() == 5 && lowercaseBackgroundValue[1] != 'f') {
             // An 8-bit RGB value with alpha transparency, in the form #ARGB.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to