This file contains 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
0x1329d8d90 [nsXPCWrappedJS (nsIObserver)] | |
--[mJSObj]--> 0x12f089140 [JS Object (Object)] | |
--[register]--> 0x12f092740 [JS Object (Function - ViewHelpers.Prefs/observer.register)] | |
--[fun_environment]--> 0x12f08f220 [JS Object (Call)] | |
--[aPrefsBlueprint]--> 0x12fb94760 [JS Object (Proxy)] | |
--[private]--> 0x12fba1580 [JS Object (Object)] | |
--[group_proto]--> 0x12fba6900 [JS Object (Object)] | |
--[constructor]--> 0x12fbb4240 [JS Object (Function - Object)] | |
--[keys]--> 0x12fbb4580 [JS Object (Function - keys)] | |
--[global]--> 0x126fc3ec0 [JS Object (Sandbox)] |
This file contains 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
mk_add_options MOZ_MAKE_FLAGS="-j4" | |
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj.noindex | |
mk_add_options AUTOCLOBBER=1 | |
ac_add_options --enable-debug-js-modules | |
# ccache stuff | |
ac_add_options --with-ccache=/usr/local/bin/ccache | |
CC="clang -fcolor-diagnostics" | |
CXX="clang++ -fcolor-diagnostics" |
This file contains 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
export CC="clang" | |
export CXX="clang++" | |
export CFLAGS="-fcolor-diagnostics" | |
export CXXFLAGS="-fcolor-diagnostics" | |
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-firefox-release-b2g-desktop | |
mk_add_options AUTOCONF=autoconf213 | |
ac_add_options --enable-application=b2g |
This file contains 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
/* | |
[#0] current-worker Cycles:25 Average:558.02 Median:549.60 stddev:38.05 (6.9%) stddev-sans-first:35.29 | |
Values: 634.6 582.1 586.1 573.6 522.3 661.3 571.6 590.9 506.8 566.5 543.3 538.4 547.7 557.0 564.9 605.2 568.4 521.8 519.8 537.4 502.8 549.6 529.1 530.3 538.9 | |
[#1] devtools-worker Cycles:25 Average:521.11 Median:509.38 stddev:30.67 (6.0%) stddev-sans-first:31.14 | |
Values: 537.1 555.8 536.7 551.7 499.6 509.4 514.9 512.7 501.3 500.1 535.1 556.7 499.4 498.9 623.2 505.4 499.3 511.8 492.3 500.4 497.5 502.3 568.5 507.0 510.5 | |
*/ | |
const { CanvasGraphUtils } = Cu.import("resource:///modules/devtools/GraphsOriginal.jsm", {}); | |
const { DevToolsWorker } = devtools.require("devtools/shared/worker"); |
This file contains 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
That is not dead which can eternal lie. And with strange aeons even death may die. | |
The Old Ones were, the Old Ones are, and the Old Ones shall be. | |
In London there is a man who screams when the church bells ring. | |
To the scientist there is the joy in pursuing truth which nearly counteracts the depressing revelations of truth. | |
Toil without song is like a weary journey without an end. | |
We shall see that at which dogs howl in the dark, and that at which cats prick up their ears after midnight. | |
Ocean is more ancient than the mountains, and freighted with the memories and the dreams of Time. | |
The process of delving into the black abyss is to me the keenest form of fascination. | |
The most merciful thing in the world... is the inability of the human mind to correlate all its contents. |
This file contains 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
<script> | |
function lalaj() { | |
var out = document.querySelector("pre"); | |
var a = new OfflineAudioContext(1, 44100, 44100); | |
var b = a.createBuffer(1, 44100, 44100); | |
var g = a.createGain(); | |
var bb = b.getChannelData(0); | |
for (var i = 0; i < bb.length; i++) { | |
bb[i] = 1.0; | |
} |
This file contains 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
const { classes: Cc, interfaces: Ci, utils: Cu, results: Cr } = Components; | |
const FRAME_SCRIPT_UTILS_URL = "chrome://browser/content/devtools/frame-script-utils.js" | |
function navigateInHistory(aTarget, aDirection, aWaitForTargetEvent = "navigate") { | |
// if e10s, use the message manager | |
if (Cu.isCrossProcessWrapper(content)) { | |
let mm = gBrowser.selectedBrowser.messageManager; | |
mm.loadFrameScript(FRAME_SCRIPT_UTILS_URL, false); | |
mm.sendAsyncMessage("devtools:test:history", { direction: aDirection }); | |
} |
This file contains 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
/** | |
* Creates wrappers for all xpcshell test files in a `./unit` directory | |
* for e10s tests, and copies over the xpcshell test with modified test names. | |
* | |
* Does NOT copy over head or support files, those need to be done manually. | |
*/ | |
var fs = require("fs"); | |
var path = require("path"); | |
var unitDir = path.join(__dirname, "unit"); | |
var unitIPCDir = path.join(__dirname, "unit_ipc"); |
This file contains 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
/** | |
* Mock up of observers consuming the notifications for the web audio API | |
* explaining in: | |
* https://bugzilla.mozilla.org/show_bug.cgi?id=980506#c25 | |
*/ | |
// Use SDK observer | |
// resource://gre/modules/commonjs/sdk/system/events.js | |
const { on, off } = require("sdk/system/events"); |
This file contains 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
### These are only for debug builds, let's not deal with that for now | |
#ac_add_options --enable-debug | |
#ac_add_options --disable-optimize | |
# Uses multicores when building | |
mk_add_options MOZ_MAKE_FLAGS="-j8" | |
# Honestly I don't know what this does | |
ac_add_options --with-ccache |