├── .esdoc.json ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── example.js ├── index.js ├── lib ├── Audits.js ├── ConsoleMessage.js ├── DOMWorld.js ├── DeviceDescriptors.js ├── Dialog.js ├── EmulationManager.js ├── Errors.js ├── Events.js ├── JSHandle.js ├── LifecycleWatcher.js ├── Multimap.js ├── SecurityManager.js ├── Target.js ├── TaskQueue.js ├── TimeoutSettings.js ├── Tracing.js ├── WaitTask.js ├── __shared.js ├── __typeDefs.js ├── accessibility │ ├── AXNode.js │ ├── Accessibility.js │ └── index.js ├── animations │ ├── Animation.js │ ├── AnimationManager.js │ └── index.js ├── browser │ ├── Browser.js │ ├── BrowserContext.js │ └── index.js ├── chromeRemoteInterfaceExtra.js ├── connection │ ├── CDPSession.js │ ├── CRIConnection.js │ ├── adaptor.js │ └── index.js ├── coverage │ ├── CSSCoverage.js │ ├── Coverage.js │ ├── JSCoverage.js │ └── index.js ├── database │ ├── Database.js │ ├── DatabaseManager.js │ └── index.js ├── executionContext │ ├── ExecutionContext.js │ ├── evalURL.js │ └── index.js ├── frames │ ├── Frame.js │ ├── FrameManager.js │ ├── FrameResource.js │ ├── FrameResourceTree.js │ └── index.js ├── helper.js ├── input │ ├── Keyboard.js │ ├── Mouse.js │ ├── Touchscreen.js │ ├── USKeyboardLayout.js │ └── index.js ├── network │ ├── Cookie.js │ ├── Fetch.js │ ├── NetworkIdleWatcher.js │ ├── NetworkManager.js │ ├── Request.js │ ├── Response.js │ ├── SecurityDetails.js │ ├── _shared.js │ └── index.js ├── page │ ├── LogEntry.js │ ├── Page.js │ └── index.js └── workers │ ├── ServiceWorker.js │ ├── Worker.js │ ├── WorkerManager.js │ └── index.js ├── package.json ├── puppeteer-original-license ├── scripts ├── convertTests.js ├── createProtocolTypeDefs.js ├── debugSomething.js ├── generateDomainClasses.js ├── generateIndex.js ├── getLastestP.sh ├── handleCDPTypes.js ├── launch-chrome.sh └── run-tests.sh ├── test ├── CDPSession.js ├── accessibility.js ├── browser.js ├── browsercontext.js ├── click.js ├── cookies.js ├── coverage.js ├── dialog.js ├── elementhandle.js ├── emulation.js ├── evaluation.js ├── fixtures │ ├── assets │ │ ├── beforeunload.html │ │ ├── cached │ │ │ ├── one-style.css │ │ │ └── one-style.html │ │ ├── chromium-linux.zip │ │ ├── consolelog.html │ │ ├── csp.html │ │ ├── csscoverage │ │ │ ├── Dosis-Regular.ttf │ │ │ ├── OFL.txt │ │ │ ├── involved.html │ │ │ ├── media.html │ │ │ ├── multiple.html │ │ │ ├── simple.html │ │ │ ├── sourceurl.html │ │ │ ├── stylesheet1.css │ │ │ ├── stylesheet2.css │ │ │ └── unused.html │ │ ├── detect-touch.html │ │ ├── digits │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── empty.html │ │ ├── emptyCSP.html │ │ ├── emptyCSPSelf.html │ │ ├── emptyFooBarHeaders.html │ │ ├── error.html │ │ ├── es6 │ │ │ ├── .eslintrc │ │ │ ├── es6import.js │ │ │ ├── es6module.js │ │ │ └── es6pathimport.js │ │ ├── file-to-upload.txt │ │ ├── frames │ │ │ ├── frame.html │ │ │ ├── frameset.html │ │ │ ├── nested-frames.html │ │ │ ├── one-frame.html │ │ │ ├── script.js │ │ │ ├── style.css │ │ │ ├── subFrameLongTimeJack.html │ │ │ ├── subFrameNoContent.html │ │ │ └── two-frames.html │ │ ├── global-var.html │ │ ├── grid.html │ │ ├── historyapi.html │ │ ├── injectedfile.js │ │ ├── injectedstyle.css │ │ ├── input │ │ │ ├── button.html │ │ │ ├── checkbox.html │ │ │ ├── fileupload.html │ │ │ ├── keyboard.html │ │ │ ├── mouse-helper.js │ │ │ ├── rotatedButton.html │ │ │ ├── scrollable.html │ │ │ ├── select.html │ │ │ ├── textarea.html │ │ │ └── touches.html │ │ ├── interceptMe.html │ │ ├── jscoverage │ │ │ ├── eval.html │ │ │ ├── involved.html │ │ │ ├── multiple.html │ │ │ ├── ranges.html │ │ │ ├── script1.js │ │ │ ├── script2.js │ │ │ ├── simple.html │ │ │ ├── sourceurl.html │ │ │ └── unused.html │ │ ├── mobile.html │ │ ├── modernizr.js │ │ ├── networkidle.html │ │ ├── offscreenbuttons.html │ │ ├── one-style-redir.html │ │ ├── one-style.css │ │ ├── one-style.html │ │ ├── playground.html │ │ ├── popup │ │ │ ├── popup.html │ │ │ └── window-open.html │ │ ├── pptr.png │ │ ├── pptr.png.gz │ │ ├── redir-css.html │ │ ├── resetcss.html │ │ ├── self-request.html │ │ ├── serviceworkers │ │ │ ├── empty │ │ │ │ ├── sw.html │ │ │ │ └── sw.js │ │ │ └── fetch │ │ │ │ ├── style.css │ │ │ │ ├── sw.html │ │ │ │ └── sw.js │ │ ├── shadow.html │ │ ├── simple-extension │ │ │ ├── content-script.js │ │ │ ├── index.js │ │ │ └── manifest.json │ │ ├── simple.json │ │ ├── simple.json.gz │ │ ├── tamperable.html │ │ ├── title.html │ │ ├── worker │ │ │ ├── worker.html │ │ │ └── worker.js │ │ └── wrappedlink.html │ └── golden │ │ ├── csscoverage-involved.txt │ │ ├── grid-cell-0.png │ │ ├── grid-cell-1.png │ │ ├── grid-cell-2.png │ │ ├── grid-cell-3.png │ │ ├── jscoverage-involved.txt │ │ ├── mock-binary-response.png │ │ ├── screenshot-clip-odd-size.png │ │ ├── screenshot-clip-rect.png │ │ ├── screenshot-element-bounding-box.png │ │ ├── screenshot-element-fractional-offset.png │ │ ├── screenshot-element-fractional.png │ │ ├── screenshot-element-larger-than-viewport.png │ │ ├── screenshot-element-padding-border.png │ │ ├── screenshot-element-rotate.png │ │ ├── screenshot-element-scrolled-into-view.png │ │ ├── screenshot-grid-fullpage.png │ │ ├── screenshot-offscreen-clip.png │ │ ├── screenshot-sanity.png │ │ ├── transparent.png │ │ └── white.jpg ├── frame.js ├── helpers │ ├── cert.pem │ ├── diffstyle.css │ ├── goldenHelper.js │ ├── index.js │ ├── initChrome.js │ ├── initServer.js │ ├── key.pem │ ├── slowStream.js │ ├── testHelper.js │ └── utils.js ├── ignorehttpserrors.js ├── input.js ├── jshandle-extra.js ├── jshandle.js ├── keyboard.js ├── mouse.js ├── navigation.js ├── network.js ├── page.js ├── queryselector.js ├── requestinterception.js ├── screenshot.js ├── target.js ├── touchscreen.js ├── tracing.js ├── waittask.js └── worker.js └── yarn.lock /.esdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/.esdoc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/README.md -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/example.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/index.js -------------------------------------------------------------------------------- /lib/Audits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/Audits.js -------------------------------------------------------------------------------- /lib/ConsoleMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/ConsoleMessage.js -------------------------------------------------------------------------------- /lib/DOMWorld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/DOMWorld.js -------------------------------------------------------------------------------- /lib/DeviceDescriptors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/DeviceDescriptors.js -------------------------------------------------------------------------------- /lib/Dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/Dialog.js -------------------------------------------------------------------------------- /lib/EmulationManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/EmulationManager.js -------------------------------------------------------------------------------- /lib/Errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/Errors.js -------------------------------------------------------------------------------- /lib/Events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/Events.js -------------------------------------------------------------------------------- /lib/JSHandle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/JSHandle.js -------------------------------------------------------------------------------- /lib/LifecycleWatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/LifecycleWatcher.js -------------------------------------------------------------------------------- /lib/Multimap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/Multimap.js -------------------------------------------------------------------------------- /lib/SecurityManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/SecurityManager.js -------------------------------------------------------------------------------- /lib/Target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/Target.js -------------------------------------------------------------------------------- /lib/TaskQueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/TaskQueue.js -------------------------------------------------------------------------------- /lib/TimeoutSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/TimeoutSettings.js -------------------------------------------------------------------------------- /lib/Tracing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/Tracing.js -------------------------------------------------------------------------------- /lib/WaitTask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/WaitTask.js -------------------------------------------------------------------------------- /lib/__shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/__shared.js -------------------------------------------------------------------------------- /lib/__typeDefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/__typeDefs.js -------------------------------------------------------------------------------- /lib/accessibility/AXNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/accessibility/AXNode.js -------------------------------------------------------------------------------- /lib/accessibility/Accessibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/accessibility/Accessibility.js -------------------------------------------------------------------------------- /lib/accessibility/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/accessibility/index.js -------------------------------------------------------------------------------- /lib/animations/Animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/animations/Animation.js -------------------------------------------------------------------------------- /lib/animations/AnimationManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/animations/AnimationManager.js -------------------------------------------------------------------------------- /lib/animations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/animations/index.js -------------------------------------------------------------------------------- /lib/browser/Browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/browser/Browser.js -------------------------------------------------------------------------------- /lib/browser/BrowserContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/browser/BrowserContext.js -------------------------------------------------------------------------------- /lib/browser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/browser/index.js -------------------------------------------------------------------------------- /lib/chromeRemoteInterfaceExtra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/chromeRemoteInterfaceExtra.js -------------------------------------------------------------------------------- /lib/connection/CDPSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/connection/CDPSession.js -------------------------------------------------------------------------------- /lib/connection/CRIConnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/connection/CRIConnection.js -------------------------------------------------------------------------------- /lib/connection/adaptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/connection/adaptor.js -------------------------------------------------------------------------------- /lib/connection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/connection/index.js -------------------------------------------------------------------------------- /lib/coverage/CSSCoverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/coverage/CSSCoverage.js -------------------------------------------------------------------------------- /lib/coverage/Coverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/coverage/Coverage.js -------------------------------------------------------------------------------- /lib/coverage/JSCoverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/coverage/JSCoverage.js -------------------------------------------------------------------------------- /lib/coverage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/coverage/index.js -------------------------------------------------------------------------------- /lib/database/Database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/database/Database.js -------------------------------------------------------------------------------- /lib/database/DatabaseManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/database/DatabaseManager.js -------------------------------------------------------------------------------- /lib/database/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/database/index.js -------------------------------------------------------------------------------- /lib/executionContext/ExecutionContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/executionContext/ExecutionContext.js -------------------------------------------------------------------------------- /lib/executionContext/evalURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/executionContext/evalURL.js -------------------------------------------------------------------------------- /lib/executionContext/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/executionContext/index.js -------------------------------------------------------------------------------- /lib/frames/Frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/frames/Frame.js -------------------------------------------------------------------------------- /lib/frames/FrameManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/frames/FrameManager.js -------------------------------------------------------------------------------- /lib/frames/FrameResource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/frames/FrameResource.js -------------------------------------------------------------------------------- /lib/frames/FrameResourceTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/frames/FrameResourceTree.js -------------------------------------------------------------------------------- /lib/frames/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/frames/index.js -------------------------------------------------------------------------------- /lib/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/helper.js -------------------------------------------------------------------------------- /lib/input/Keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/input/Keyboard.js -------------------------------------------------------------------------------- /lib/input/Mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/input/Mouse.js -------------------------------------------------------------------------------- /lib/input/Touchscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/input/Touchscreen.js -------------------------------------------------------------------------------- /lib/input/USKeyboardLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/input/USKeyboardLayout.js -------------------------------------------------------------------------------- /lib/input/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/input/index.js -------------------------------------------------------------------------------- /lib/network/Cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/network/Cookie.js -------------------------------------------------------------------------------- /lib/network/Fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/network/Fetch.js -------------------------------------------------------------------------------- /lib/network/NetworkIdleWatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/network/NetworkIdleWatcher.js -------------------------------------------------------------------------------- /lib/network/NetworkManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/network/NetworkManager.js -------------------------------------------------------------------------------- /lib/network/Request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/network/Request.js -------------------------------------------------------------------------------- /lib/network/Response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/network/Response.js -------------------------------------------------------------------------------- /lib/network/SecurityDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/network/SecurityDetails.js -------------------------------------------------------------------------------- /lib/network/_shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/network/_shared.js -------------------------------------------------------------------------------- /lib/network/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/network/index.js -------------------------------------------------------------------------------- /lib/page/LogEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/page/LogEntry.js -------------------------------------------------------------------------------- /lib/page/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/page/Page.js -------------------------------------------------------------------------------- /lib/page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/page/index.js -------------------------------------------------------------------------------- /lib/workers/ServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/workers/ServiceWorker.js -------------------------------------------------------------------------------- /lib/workers/Worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/workers/Worker.js -------------------------------------------------------------------------------- /lib/workers/WorkerManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/workers/WorkerManager.js -------------------------------------------------------------------------------- /lib/workers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/lib/workers/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/package.json -------------------------------------------------------------------------------- /puppeteer-original-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/puppeteer-original-license -------------------------------------------------------------------------------- /scripts/convertTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/scripts/convertTests.js -------------------------------------------------------------------------------- /scripts/createProtocolTypeDefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/scripts/createProtocolTypeDefs.js -------------------------------------------------------------------------------- /scripts/debugSomething.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/scripts/debugSomething.js -------------------------------------------------------------------------------- /scripts/generateDomainClasses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/scripts/generateDomainClasses.js -------------------------------------------------------------------------------- /scripts/generateIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/scripts/generateIndex.js -------------------------------------------------------------------------------- /scripts/getLastestP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/scripts/getLastestP.sh -------------------------------------------------------------------------------- /scripts/handleCDPTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/scripts/handleCDPTypes.js -------------------------------------------------------------------------------- /scripts/launch-chrome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/scripts/launch-chrome.sh -------------------------------------------------------------------------------- /scripts/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/scripts/run-tests.sh -------------------------------------------------------------------------------- /test/CDPSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/CDPSession.js -------------------------------------------------------------------------------- /test/accessibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/accessibility.js -------------------------------------------------------------------------------- /test/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/browser.js -------------------------------------------------------------------------------- /test/browsercontext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/browsercontext.js -------------------------------------------------------------------------------- /test/click.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/click.js -------------------------------------------------------------------------------- /test/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/cookies.js -------------------------------------------------------------------------------- /test/coverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/coverage.js -------------------------------------------------------------------------------- /test/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/dialog.js -------------------------------------------------------------------------------- /test/elementhandle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/elementhandle.js -------------------------------------------------------------------------------- /test/emulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/emulation.js -------------------------------------------------------------------------------- /test/evaluation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/evaluation.js -------------------------------------------------------------------------------- /test/fixtures/assets/beforeunload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/beforeunload.html -------------------------------------------------------------------------------- /test/fixtures/assets/cached/one-style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: pink; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/assets/cached/one-style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/cached/one-style.html -------------------------------------------------------------------------------- /test/fixtures/assets/chromium-linux.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/chromium-linux.zip -------------------------------------------------------------------------------- /test/fixtures/assets/consolelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/consolelog.html -------------------------------------------------------------------------------- /test/fixtures/assets/csp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/csp.html -------------------------------------------------------------------------------- /test/fixtures/assets/csscoverage/Dosis-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/csscoverage/Dosis-Regular.ttf -------------------------------------------------------------------------------- /test/fixtures/assets/csscoverage/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/csscoverage/OFL.txt -------------------------------------------------------------------------------- /test/fixtures/assets/csscoverage/involved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/csscoverage/involved.html -------------------------------------------------------------------------------- /test/fixtures/assets/csscoverage/media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/csscoverage/media.html -------------------------------------------------------------------------------- /test/fixtures/assets/csscoverage/multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/csscoverage/multiple.html -------------------------------------------------------------------------------- /test/fixtures/assets/csscoverage/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/csscoverage/simple.html -------------------------------------------------------------------------------- /test/fixtures/assets/csscoverage/sourceurl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/csscoverage/sourceurl.html -------------------------------------------------------------------------------- /test/fixtures/assets/csscoverage/stylesheet1.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/assets/csscoverage/stylesheet2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/csscoverage/stylesheet2.css -------------------------------------------------------------------------------- /test/fixtures/assets/csscoverage/unused.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/csscoverage/unused.html -------------------------------------------------------------------------------- /test/fixtures/assets/detect-touch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/detect-touch.html -------------------------------------------------------------------------------- /test/fixtures/assets/digits/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/digits/0.png -------------------------------------------------------------------------------- /test/fixtures/assets/digits/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/digits/1.png -------------------------------------------------------------------------------- /test/fixtures/assets/digits/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/digits/2.png -------------------------------------------------------------------------------- /test/fixtures/assets/digits/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/digits/3.png -------------------------------------------------------------------------------- /test/fixtures/assets/digits/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/digits/4.png -------------------------------------------------------------------------------- /test/fixtures/assets/digits/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/digits/5.png -------------------------------------------------------------------------------- /test/fixtures/assets/digits/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/digits/6.png -------------------------------------------------------------------------------- /test/fixtures/assets/digits/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/digits/7.png -------------------------------------------------------------------------------- /test/fixtures/assets/digits/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/digits/8.png -------------------------------------------------------------------------------- /test/fixtures/assets/digits/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/digits/9.png -------------------------------------------------------------------------------- /test/fixtures/assets/empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/assets/emptyCSP.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/assets/emptyCSPSelf.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/assets/emptyFooBarHeaders.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/assets/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/error.html -------------------------------------------------------------------------------- /test/fixtures/assets/es6/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/es6/.eslintrc -------------------------------------------------------------------------------- /test/fixtures/assets/es6/es6import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/es6/es6import.js -------------------------------------------------------------------------------- /test/fixtures/assets/es6/es6module.js: -------------------------------------------------------------------------------- 1 | export default 42; -------------------------------------------------------------------------------- /test/fixtures/assets/es6/es6pathimport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/es6/es6pathimport.js -------------------------------------------------------------------------------- /test/fixtures/assets/file-to-upload.txt: -------------------------------------------------------------------------------- 1 | contents of the file -------------------------------------------------------------------------------- /test/fixtures/assets/frames/frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/frames/frame.html -------------------------------------------------------------------------------- /test/fixtures/assets/frames/frameset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/frames/frameset.html -------------------------------------------------------------------------------- /test/fixtures/assets/frames/nested-frames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/frames/nested-frames.html -------------------------------------------------------------------------------- /test/fixtures/assets/frames/one-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/frames/one-frame.html -------------------------------------------------------------------------------- /test/fixtures/assets/frames/script.js: -------------------------------------------------------------------------------- 1 | console.log('Cheers!'); 2 | -------------------------------------------------------------------------------- /test/fixtures/assets/frames/style.css: -------------------------------------------------------------------------------- 1 | div { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/assets/frames/subFrameLongTimeJack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/frames/subFrameLongTimeJack.html -------------------------------------------------------------------------------- /test/fixtures/assets/frames/subFrameNoContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/frames/subFrameNoContent.html -------------------------------------------------------------------------------- /test/fixtures/assets/frames/two-frames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/frames/two-frames.html -------------------------------------------------------------------------------- /test/fixtures/assets/global-var.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/global-var.html -------------------------------------------------------------------------------- /test/fixtures/assets/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/grid.html -------------------------------------------------------------------------------- /test/fixtures/assets/historyapi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/historyapi.html -------------------------------------------------------------------------------- /test/fixtures/assets/injectedfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/injectedfile.js -------------------------------------------------------------------------------- /test/fixtures/assets/injectedstyle.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/assets/input/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/input/button.html -------------------------------------------------------------------------------- /test/fixtures/assets/input/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/input/checkbox.html -------------------------------------------------------------------------------- /test/fixtures/assets/input/fileupload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/input/fileupload.html -------------------------------------------------------------------------------- /test/fixtures/assets/input/keyboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/input/keyboard.html -------------------------------------------------------------------------------- /test/fixtures/assets/input/mouse-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/input/mouse-helper.js -------------------------------------------------------------------------------- /test/fixtures/assets/input/rotatedButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/input/rotatedButton.html -------------------------------------------------------------------------------- /test/fixtures/assets/input/scrollable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/input/scrollable.html -------------------------------------------------------------------------------- /test/fixtures/assets/input/select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/input/select.html -------------------------------------------------------------------------------- /test/fixtures/assets/input/textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/input/textarea.html -------------------------------------------------------------------------------- /test/fixtures/assets/input/touches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/input/touches.html -------------------------------------------------------------------------------- /test/fixtures/assets/interceptMe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/interceptMe.html -------------------------------------------------------------------------------- /test/fixtures/assets/jscoverage/eval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/jscoverage/eval.html -------------------------------------------------------------------------------- /test/fixtures/assets/jscoverage/involved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/jscoverage/involved.html -------------------------------------------------------------------------------- /test/fixtures/assets/jscoverage/multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/jscoverage/multiple.html -------------------------------------------------------------------------------- /test/fixtures/assets/jscoverage/ranges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/jscoverage/ranges.html -------------------------------------------------------------------------------- /test/fixtures/assets/jscoverage/script1.js: -------------------------------------------------------------------------------- 1 | console.log(3); 2 | -------------------------------------------------------------------------------- /test/fixtures/assets/jscoverage/script2.js: -------------------------------------------------------------------------------- 1 | console.log(3); 2 | -------------------------------------------------------------------------------- /test/fixtures/assets/jscoverage/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/jscoverage/simple.html -------------------------------------------------------------------------------- /test/fixtures/assets/jscoverage/sourceurl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/jscoverage/sourceurl.html -------------------------------------------------------------------------------- /test/fixtures/assets/jscoverage/unused.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/jscoverage/unused.html -------------------------------------------------------------------------------- /test/fixtures/assets/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/mobile.html -------------------------------------------------------------------------------- /test/fixtures/assets/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/modernizr.js -------------------------------------------------------------------------------- /test/fixtures/assets/networkidle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/networkidle.html -------------------------------------------------------------------------------- /test/fixtures/assets/offscreenbuttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/offscreenbuttons.html -------------------------------------------------------------------------------- /test/fixtures/assets/one-style-redir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/one-style-redir.html -------------------------------------------------------------------------------- /test/fixtures/assets/one-style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: pink; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/assets/one-style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/one-style.html -------------------------------------------------------------------------------- /test/fixtures/assets/playground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/playground.html -------------------------------------------------------------------------------- /test/fixtures/assets/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/popup/popup.html -------------------------------------------------------------------------------- /test/fixtures/assets/popup/window-open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/popup/window-open.html -------------------------------------------------------------------------------- /test/fixtures/assets/pptr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/pptr.png -------------------------------------------------------------------------------- /test/fixtures/assets/pptr.png.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/pptr.png.gz -------------------------------------------------------------------------------- /test/fixtures/assets/redir-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/redir-css.html -------------------------------------------------------------------------------- /test/fixtures/assets/resetcss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/resetcss.html -------------------------------------------------------------------------------- /test/fixtures/assets/self-request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/self-request.html -------------------------------------------------------------------------------- /test/fixtures/assets/serviceworkers/empty/sw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/serviceworkers/empty/sw.html -------------------------------------------------------------------------------- /test/fixtures/assets/serviceworkers/empty/sw.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/assets/serviceworkers/fetch/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: pink; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/assets/serviceworkers/fetch/sw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/serviceworkers/fetch/sw.html -------------------------------------------------------------------------------- /test/fixtures/assets/serviceworkers/fetch/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/serviceworkers/fetch/sw.js -------------------------------------------------------------------------------- /test/fixtures/assets/shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/shadow.html -------------------------------------------------------------------------------- /test/fixtures/assets/simple-extension/content-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/simple-extension/content-script.js -------------------------------------------------------------------------------- /test/fixtures/assets/simple-extension/index.js: -------------------------------------------------------------------------------- 1 | // Mock script for background extension -------------------------------------------------------------------------------- /test/fixtures/assets/simple-extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/simple-extension/manifest.json -------------------------------------------------------------------------------- /test/fixtures/assets/simple.json: -------------------------------------------------------------------------------- 1 | {"foo": "bar"} 2 | -------------------------------------------------------------------------------- /test/fixtures/assets/simple.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/simple.json.gz -------------------------------------------------------------------------------- /test/fixtures/assets/tamperable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/tamperable.html -------------------------------------------------------------------------------- /test/fixtures/assets/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/title.html -------------------------------------------------------------------------------- /test/fixtures/assets/worker/worker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/worker/worker.html -------------------------------------------------------------------------------- /test/fixtures/assets/worker/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/worker/worker.js -------------------------------------------------------------------------------- /test/fixtures/assets/wrappedlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/assets/wrappedlink.html -------------------------------------------------------------------------------- /test/fixtures/golden/csscoverage-involved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/csscoverage-involved.txt -------------------------------------------------------------------------------- /test/fixtures/golden/grid-cell-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/grid-cell-0.png -------------------------------------------------------------------------------- /test/fixtures/golden/grid-cell-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/grid-cell-1.png -------------------------------------------------------------------------------- /test/fixtures/golden/grid-cell-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/grid-cell-2.png -------------------------------------------------------------------------------- /test/fixtures/golden/grid-cell-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/grid-cell-3.png -------------------------------------------------------------------------------- /test/fixtures/golden/jscoverage-involved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/jscoverage-involved.txt -------------------------------------------------------------------------------- /test/fixtures/golden/mock-binary-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/mock-binary-response.png -------------------------------------------------------------------------------- /test/fixtures/golden/screenshot-clip-odd-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/screenshot-clip-odd-size.png -------------------------------------------------------------------------------- /test/fixtures/golden/screenshot-clip-rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/screenshot-clip-rect.png -------------------------------------------------------------------------------- /test/fixtures/golden/screenshot-element-bounding-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/screenshot-element-bounding-box.png -------------------------------------------------------------------------------- /test/fixtures/golden/screenshot-element-fractional-offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/screenshot-element-fractional-offset.png -------------------------------------------------------------------------------- /test/fixtures/golden/screenshot-element-fractional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/screenshot-element-fractional.png -------------------------------------------------------------------------------- /test/fixtures/golden/screenshot-element-larger-than-viewport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/screenshot-element-larger-than-viewport.png -------------------------------------------------------------------------------- /test/fixtures/golden/screenshot-element-padding-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/screenshot-element-padding-border.png -------------------------------------------------------------------------------- /test/fixtures/golden/screenshot-element-rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/screenshot-element-rotate.png -------------------------------------------------------------------------------- /test/fixtures/golden/screenshot-element-scrolled-into-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/screenshot-element-scrolled-into-view.png -------------------------------------------------------------------------------- /test/fixtures/golden/screenshot-grid-fullpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/screenshot-grid-fullpage.png -------------------------------------------------------------------------------- /test/fixtures/golden/screenshot-offscreen-clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/screenshot-offscreen-clip.png -------------------------------------------------------------------------------- /test/fixtures/golden/screenshot-sanity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/screenshot-sanity.png -------------------------------------------------------------------------------- /test/fixtures/golden/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/transparent.png -------------------------------------------------------------------------------- /test/fixtures/golden/white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/fixtures/golden/white.jpg -------------------------------------------------------------------------------- /test/frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/frame.js -------------------------------------------------------------------------------- /test/helpers/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/helpers/cert.pem -------------------------------------------------------------------------------- /test/helpers/diffstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/helpers/diffstyle.css -------------------------------------------------------------------------------- /test/helpers/goldenHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/helpers/goldenHelper.js -------------------------------------------------------------------------------- /test/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/helpers/index.js -------------------------------------------------------------------------------- /test/helpers/initChrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/helpers/initChrome.js -------------------------------------------------------------------------------- /test/helpers/initServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/helpers/initServer.js -------------------------------------------------------------------------------- /test/helpers/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/helpers/key.pem -------------------------------------------------------------------------------- /test/helpers/slowStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/helpers/slowStream.js -------------------------------------------------------------------------------- /test/helpers/testHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/helpers/testHelper.js -------------------------------------------------------------------------------- /test/helpers/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/helpers/utils.js -------------------------------------------------------------------------------- /test/ignorehttpserrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/ignorehttpserrors.js -------------------------------------------------------------------------------- /test/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/input.js -------------------------------------------------------------------------------- /test/jshandle-extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/jshandle-extra.js -------------------------------------------------------------------------------- /test/jshandle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/jshandle.js -------------------------------------------------------------------------------- /test/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/keyboard.js -------------------------------------------------------------------------------- /test/mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/mouse.js -------------------------------------------------------------------------------- /test/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/navigation.js -------------------------------------------------------------------------------- /test/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/network.js -------------------------------------------------------------------------------- /test/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/page.js -------------------------------------------------------------------------------- /test/queryselector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/queryselector.js -------------------------------------------------------------------------------- /test/requestinterception.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/requestinterception.js -------------------------------------------------------------------------------- /test/screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/screenshot.js -------------------------------------------------------------------------------- /test/target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/target.js -------------------------------------------------------------------------------- /test/touchscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/touchscreen.js -------------------------------------------------------------------------------- /test/tracing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/tracing.js -------------------------------------------------------------------------------- /test/waittask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/waittask.js -------------------------------------------------------------------------------- /test/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/test/worker.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0taN3rd/chrome-remote-interface-extra/HEAD/yarn.lock --------------------------------------------------------------------------------