├── .gitignore ├── README.md ├── TODO.md ├── agents ├── animation.js ├── console.js ├── css.js ├── dom.js ├── emulation.js ├── info.js ├── inspector.js ├── network.js ├── page.js ├── runtime.js └── worker.js ├── bin └── adaptor.js ├── data ├── Chrome.CSS.getAllStyleSheets.json ├── Chrome.CSS.getComputedStyleForNode.json ├── Chrome.CSS.getInlineStylesForNode.json ├── Chrome.CSS.getMatchedStylesForNode.json ├── Chrome.CSS.getSupportedCSSProperties.json ├── Chrome.Dom.getDocument.json ├── Chrome.Runtime.evaluate.json ├── events │ ├── CSS.stylesheetAdded.json │ └── DOM.setChildNodes.json └── gecko.Node.json ├── index.js ├── lib ├── client.js ├── core.js ├── domNodeCache.js ├── httprequest.js ├── logger.js ├── request.js └── server.js ├── objects ├── CSSComputedStyleProperty.js ├── CSSProperty.js ├── CSSRule.js ├── CSSRuleMatch.js ├── CSSStyle.js ├── cssStylesheet.js ├── domNode.js ├── pageFrame.js └── runtimeRemoteobject.js ├── package.json ├── readme └── animation.gif └── tools └── client.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/TODO.md -------------------------------------------------------------------------------- /agents/animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/agents/animation.js -------------------------------------------------------------------------------- /agents/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/agents/console.js -------------------------------------------------------------------------------- /agents/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/agents/css.js -------------------------------------------------------------------------------- /agents/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/agents/dom.js -------------------------------------------------------------------------------- /agents/emulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/agents/emulation.js -------------------------------------------------------------------------------- /agents/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/agents/info.js -------------------------------------------------------------------------------- /agents/inspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/agents/inspector.js -------------------------------------------------------------------------------- /agents/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/agents/network.js -------------------------------------------------------------------------------- /agents/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/agents/page.js -------------------------------------------------------------------------------- /agents/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/agents/runtime.js -------------------------------------------------------------------------------- /agents/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/agents/worker.js -------------------------------------------------------------------------------- /bin/adaptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/bin/adaptor.js -------------------------------------------------------------------------------- /data/Chrome.CSS.getAllStyleSheets.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/Chrome.CSS.getComputedStyleForNode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/data/Chrome.CSS.getComputedStyleForNode.json -------------------------------------------------------------------------------- /data/Chrome.CSS.getInlineStylesForNode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/data/Chrome.CSS.getInlineStylesForNode.json -------------------------------------------------------------------------------- /data/Chrome.CSS.getMatchedStylesForNode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/data/Chrome.CSS.getMatchedStylesForNode.json -------------------------------------------------------------------------------- /data/Chrome.CSS.getSupportedCSSProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/data/Chrome.CSS.getSupportedCSSProperties.json -------------------------------------------------------------------------------- /data/Chrome.Dom.getDocument.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/data/Chrome.Dom.getDocument.json -------------------------------------------------------------------------------- /data/Chrome.Runtime.evaluate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/data/Chrome.Runtime.evaluate.json -------------------------------------------------------------------------------- /data/events/CSS.stylesheetAdded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/data/events/CSS.stylesheetAdded.json -------------------------------------------------------------------------------- /data/events/DOM.setChildNodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/data/events/DOM.setChildNodes.json -------------------------------------------------------------------------------- /data/gecko.Node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/data/gecko.Node.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/index.js -------------------------------------------------------------------------------- /lib/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/lib/client.js -------------------------------------------------------------------------------- /lib/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/lib/core.js -------------------------------------------------------------------------------- /lib/domNodeCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/lib/domNodeCache.js -------------------------------------------------------------------------------- /lib/httprequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/lib/httprequest.js -------------------------------------------------------------------------------- /lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/lib/logger.js -------------------------------------------------------------------------------- /lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/lib/request.js -------------------------------------------------------------------------------- /lib/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/lib/server.js -------------------------------------------------------------------------------- /objects/CSSComputedStyleProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/objects/CSSComputedStyleProperty.js -------------------------------------------------------------------------------- /objects/CSSProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/objects/CSSProperty.js -------------------------------------------------------------------------------- /objects/CSSRule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/objects/CSSRule.js -------------------------------------------------------------------------------- /objects/CSSRuleMatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/objects/CSSRuleMatch.js -------------------------------------------------------------------------------- /objects/CSSStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/objects/CSSStyle.js -------------------------------------------------------------------------------- /objects/cssStylesheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/objects/cssStylesheet.js -------------------------------------------------------------------------------- /objects/domNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/objects/domNode.js -------------------------------------------------------------------------------- /objects/pageFrame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/objects/pageFrame.js -------------------------------------------------------------------------------- /objects/runtimeRemoteobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/objects/runtimeRemoteobject.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/package.json -------------------------------------------------------------------------------- /readme/animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/readme/animation.gif -------------------------------------------------------------------------------- /tools/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemoteDebug/remotedebug-firefox-adapter/HEAD/tools/client.js --------------------------------------------------------------------------------