Last active
August 17, 2017 21:34
-
-
Save bgrins/3eb7cf249c7ef85d512801d16ad7d93e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./mach run --setpref dom.allow_XUL_XBL_for_file=true file:///path/to/minimal.xul |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<!-- 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/. --> | |
<?xml-stylesheet href="chrome://global/skin/global.css"?> | |
<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" | |
xmlns:html="http://www.w3.org/1999/xhtml" | |
title="Test"> | |
<box>Hi</box> | |
<script type="application/javascript"><![CDATA[ | |
alert("hi"); | |
]]></script> | |
</page> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment