Merge mozilla-central to inbound. a=merge CLOSED TREE

This commit is contained in:
Margareta Eliza Balazs 2018-09-13 13:03:31 +03:00
Родитель 7211623860 dd965445ec
Коммит 5a72930a01
3 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -87,6 +87,11 @@ a {
overflow: hidden;
}
/* Reset the overflow for the network info panel (when a network message is expanded) */
.message .network-info * {
overflow: unset;
}
.message:hover {
border-inline-start-color: var(--theme-highlight-blue);
}

Просмотреть файл

@ -10898,7 +10898,8 @@ public:
NS_IMETHOD Run() override
{
mRequest->GetDocument()->RequestFullscreen(std::move(mRequest));
nsIDocument* doc = mRequest->GetDocument();
doc->RequestFullscreen(std::move(mRequest));
return NS_OK;
}

Просмотреть файл

@ -90,6 +90,8 @@ const PREFS_WHITELIST = [
// The blacklist, unlike the whitelist, is a list of regular expressions.
const PREFS_BLACKLIST = [
/^media[.]webrtc[.]debug[.]aec_log_dir/,
/^media[.]webrtc[.]debug[.]log_file/,
/^network[.]proxy[.]/,
/[.]print_to_filename$/,
/^print[.]macosx[.]pagesetup/,