Title: [133250] trunk/Source/WebKit2
Revision
133250
Author
ander...@apple.com
Date
2012-11-01 18:23:58 -0700 (Thu, 01 Nov 2012)

Log Message

Reformat the annotationStyle initializer to appease update-webkit-localizable-strings.

Rubber-stamped by Dan Bernstein.

* WebProcess/Plugins/PDF/PDFPlugin.mm:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (133249 => 133250)


--- trunk/Source/WebKit2/ChangeLog	2012-11-02 01:22:15 UTC (rev 133249)
+++ trunk/Source/WebKit2/ChangeLog	2012-11-02 01:23:58 UTC (rev 133250)
@@ -1,3 +1,11 @@
+2012-11-01  Anders Carlsson  <ander...@apple.com>
+
+        Reformat the annotationStyle initializer to appease update-webkit-localizable-strings.
+
+        Rubber-stamped by Dan Bernstein.
+
+        * WebProcess/Plugins/PDF/PDFPlugin.mm:
+
 2012-11-01  Alexandru Chiculita  <ach...@adobe.com>
 
         [CSS Shaders] Move MeshBoxType out of CustomFilterOperation

Modified: trunk/Source/WebKit2/WebProcess/Plugins/PDF/PDFPlugin.mm (133249 => 133250)


--- trunk/Source/WebKit2/WebProcess/Plugins/PDF/PDFPlugin.mm	2012-11-02 01:22:15 UTC (rev 133249)
+++ trunk/Source/WebKit2/WebProcess/Plugins/PDF/PDFPlugin.mm	2012-11-02 01:23:58 UTC (rev 133250)
@@ -61,23 +61,23 @@
 // Set overflow: hidden on the annotation container so <input> elements scrolled out of view don't show
 // scrollbars on the body. We can't add annotations directly to the body, because overflow: hidden on the body
 // will break rubber-banding.
-static const char* annotationStyle = " \
-#annotationContainer { \
-    overflow: hidden; \
-    position: absolute; \
-    pointer-events: none; \
-    top: 0; \
-    left: 0; \
-    right: 0; \
-    bottom: 0; \
-} \
-.annotation { \
-    position: absolute; \
-    pointer-events: auto; \
-} \
-textarea.annotation { \
-    resize: none; \
-}";
+static const char* annotationStyle =
+"#annotationContainer {"
+"    overflow: hidden; "
+"    position: absolute; "
+"    pointer-events: none; "
+"    top: 0; "
+"    left: 0; "
+"    right: 0; "
+"    bottom: 0; "
+"} "
+".annotation { "
+"    position: absolute; "
+"    pointer-events: auto; "
+"} "
+"textarea.annotation { "
+"    resize: none; "
+"}";
 
 @interface WKPDFPluginScrollbarLayer : CALayer
 {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to