mirror of
https://github.com/roytam1/mozilla45esr.git
synced 2026-05-26 15:39:48 +00:00
706b4d3150
- #565: M1367219 (6f63dc2cc) - more adblock hosts (8cf4190e2) - #565: implement nsASCIIMask from M1358297 (41b1fc937) (with vc2013 fix by replacing constexpr to MOZ_CONSTEXPR and MOZ_CONSTEXPR_VAR) - #565: M1358225 with fix for M1548306 applied (8eed11298) (with vc2013 fix by replacing constexpr to MOZ_CONSTEXPR and MOZ_CONSTEXPR_VAR) - even more adblock hosts (5d005926f) - #565: M1347737 (9ab5bb0ed) - #565: M1358297 parts 3 and 4 (3fd15a87a) - #521: baseline parser support for async/await, with toggle, without bytecode (passes tests) (0e5746aaf) - #521: fix yield handling (includes M1305566 pts 4-7) (2d25f717b) - #521: make async functions throw for compatibility when enabled (46b01b5d4) - #569: M1204714 (c45b2e8b5) - #568: M1560495 (adapted for 45) M1562033+M1466449 M1559715 M1564449 M1573160 (d019bd3dc) - #568: update certs, pins, TLDs, miners (ed3129eeb) - #570: oops (dd79a9f75) and added -bigobj compile switch to ssl/moz.build.
44 lines
1.8 KiB
C++
44 lines
1.8 KiB
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
#include "nsHtml5PlainTextUtils.h"
|
|
#include "nsHtml5AttributeName.h"
|
|
#include "nsHtml5Portability.h"
|
|
#include "nsIServiceManager.h"
|
|
#include "nsIStringBundle.h"
|
|
#include "mozilla/Preferences.h"
|
|
#include "nsHtml5String.h"
|
|
|
|
// static
|
|
nsHtml5HtmlAttributes*
|
|
nsHtml5PlainTextUtils::NewLinkAttributes()
|
|
{
|
|
nsHtml5HtmlAttributes* linkAttrs = new nsHtml5HtmlAttributes(0);
|
|
nsHtml5String rel =
|
|
nsHtml5Portability::newStringFromLiteral("alternate stylesheet");
|
|
linkAttrs->addAttribute(nsHtml5AttributeName::ATTR_REL, rel);
|
|
nsHtml5String type = nsHtml5Portability::newStringFromLiteral("text/css");
|
|
linkAttrs->addAttribute(nsHtml5AttributeName::ATTR_TYPE, type);
|
|
nsHtml5String href = nsHtml5Portability::newStringFromLiteral(
|
|
"resource://gre-resources/plaintext.css");
|
|
linkAttrs->addAttribute(nsHtml5AttributeName::ATTR_HREF, href);
|
|
|
|
nsresult rv;
|
|
nsCOMPtr<nsIStringBundleService> bundleService = do_GetService(NS_STRINGBUNDLE_CONTRACTID, &rv);
|
|
NS_ASSERTION(NS_SUCCEEDED(rv) && bundleService, "The bundle service could not be loaded");
|
|
nsCOMPtr<nsIStringBundle> bundle;
|
|
rv = bundleService->CreateBundle("chrome://global/locale/browser.properties",
|
|
getter_AddRefs(bundle));
|
|
NS_ASSERTION(NS_SUCCEEDED(rv) && bundle, "chrome://global/locale/browser.properties could not be loaded");
|
|
nsXPIDLString title;
|
|
if (bundle) {
|
|
bundle->GetStringFromName(MOZ_UTF16("plainText.wordWrap"), getter_Copies(title));
|
|
}
|
|
|
|
linkAttrs->addAttribute(
|
|
nsHtml5AttributeName::ATTR_TITLE, nsHtml5String::FromString(title));
|
|
return linkAttrs;
|
|
}
|