Bug 1245245 - Fix typo in error string URL. r?botond draft
authorKartikaya Gupta <kgupta@mozilla.com>
Wed, 03 Feb 2016 08:41:46 -0500
changeset 328502 cd23e20829ccdf4ce2e30310999596487826c778
parent 328501 f2f8fc172f4c62334e9a92bcf10e00fe877387d5
child 513823 30d8838ecaf32878f5c41620eb67dafde796a47c
push id10366
push userkgupta@mozilla.com
push dateWed, 03 Feb 2016 13:42:11 +0000
reviewersbotond
bugs1245245
milestone47.0a1
Bug 1245245 - Fix typo in error string URL. r?botond
dom/base/nsDocument.cpp
dom/locales/en-US/chrome/layout/layout_errors.properties
--- a/dom/base/nsDocument.cpp
+++ b/dom/base/nsDocument.cpp
@@ -13408,10 +13408,10 @@ nsIDocument::ReportHasScrollLinkedEffect
   if (mHasScrollLinkedEffect) {
     // We already did this once for this document, don't do it again.
     return;
   }
   mHasScrollLinkedEffect = true;
   nsContentUtils::ReportToConsole(nsIScriptError::warningFlag,
                                   NS_LITERAL_CSTRING("Async Pan/Zoom"),
                                   this, nsContentUtils::eLAYOUT_PROPERTIES,
-                                  "ScrollLinkedEffectFound");
-}
+                                  "ScrollLinkedEffectFound2");
+}
--- a/dom/locales/en-US/chrome/layout/layout_errors.properties
+++ b/dom/locales/en-US/chrome/layout/layout_errors.properties
@@ -4,9 +4,9 @@
 
 ImageMapRectBoundsError=The "coords" attribute of the <area shape="rect"> tag is not in the "left,top,right,bottom" format.
 ImageMapCircleWrongNumberOfCoords=The "coords" attribute of the <area shape="circle"> tag is not in the "center-x,center-y,radius" format.
 ImageMapCircleNegativeRadius=The "coords" attribute of the <area shape="circle"> tag has a negative radius.
 ImageMapPolyWrongNumberOfCoords=The "coords" attribute of the <area shape="poly"> tag is not in the "x1,y1,x2,y2 …" format.
 ImageMapPolyOddNumberOfCoords=The "coords" attribute of the <area shape="poly"> tag is missing the last "y" coordinate (the correct format is "x1,y1,x2,y2 …").
 
 TablePartRelPosWarning=Relative positioning of table rows and row groups is now supported. This site may need to be updated because it may depend on this feature having no effect.
-ScrollLinkedEffectFound=This site appears to use a scroll-linked positioning effect. This may not work well with asynchronous panning; see https://developers.mozilla.org/docs/Mozilla/Performance/ScrollLinkedEffects for further details and to join the discussion on related tools and features!
+ScrollLinkedEffectFound2=This site appears to use a scroll-linked positioning effect. This may not work well with asynchronous panning; see https://developer.mozilla.org/docs/Mozilla/Performance/ScrollLinkedEffects for further details and to join the discussion on related tools and features!