diff options
Diffstat (limited to 'toolkit/pluginproblem')
-rw-r--r-- | toolkit/pluginproblem/content/pluginProblemContent.css | 23 | ||||
-rw-r--r-- | toolkit/pluginproblem/jar.mn | 7 | ||||
-rw-r--r-- | toolkit/pluginproblem/moz.build | 7 |
3 files changed, 37 insertions, 0 deletions
diff --git a/toolkit/pluginproblem/content/pluginProblemContent.css b/toolkit/pluginproblem/content/pluginProblemContent.css new file mode 100644 index 0000000000..12d380e12e --- /dev/null +++ b/toolkit/pluginproblem/content/pluginProblemContent.css @@ -0,0 +1,23 @@ +/* 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/. */ + +/* Do not change this without also changing the appropriate line in + * browser-plugins.js (near where this file is mentioned). */ +:host(:not([width])), :host([width=""]) { + width: 240px; +} + +/* Do not change this without also changing the appropriate line in + * browser-plugins.js (near where this file is mentioned). */ +:host(:not([width])), :host([width=""]) { + height: 200px; +} + +.mainBox { + width: inherit; + height: inherit; + overflow: hidden; + cursor: inherit; + visibility: hidden; +} diff --git a/toolkit/pluginproblem/jar.mn b/toolkit/pluginproblem/jar.mn new file mode 100644 index 0000000000..db321841f9 --- /dev/null +++ b/toolkit/pluginproblem/jar.mn @@ -0,0 +1,7 @@ +# 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/. + +toolkit.jar: +% content pluginproblem %pluginproblem/ contentaccessible=yes + pluginproblem/pluginProblemContent.css (content/pluginProblemContent.css) diff --git a/toolkit/pluginproblem/moz.build b/toolkit/pluginproblem/moz.build new file mode 100644 index 0000000000..d988c0ff9b --- /dev/null +++ b/toolkit/pluginproblem/moz.build @@ -0,0 +1,7 @@ +# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- +# vim: set filetype=python: +# 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/. + +JAR_MANIFESTS += ["jar.mn"] |