code stringlengths 1 1.05M | repo_name stringlengths 6 83 | path stringlengths 3 242 | language stringclasses 222
values | license stringclasses 20
values | size int64 1 1.05M |
|---|---|---|---|---|---|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Service Worker initialization listeners.
self.addEventListener('install', e => e.waitUntil(skipWaiting()));
self.addEventListener('activate', e => e.waitUntil(clients.claim(... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/background_fetch/sw.js | JavaScript | unknown | 861 |
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>BackgroundSyncBrowserTest helper page</title>
<script>
window.onload = async () => {
let registration = await navigator.serviceWorker.register('/background_sync_sw.js');
navigator.serviceWorker.ready.then((registration) =>... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/background_sync_browsertest.html | HTML | unknown | 486 |
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
'use strict';
// Service Worker initialization listeners.
self.addEventListener('install', event => event.waitUntil(skipWaiting()));
self.addEventListener('activate', event =>... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/background_sync_sw.js | JavaScript | unknown | 483 |
<html>
<body onbeforeunload="return runBeforeUnload()">
<p>Some text so the document is ready for input.</p>
</body>
<script>
function runBeforeUnload() {
return "foo";
}
</script>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/before_unload.html | HTML | unknown | 215 |
<html>
<head><title>Clear-Site-Data Test Page</title></head>
<body>Clear-Site-Data test body</body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/clear_site_data.html | HTML | unknown | 109 |
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Clipboard API helper page</title>
<script>
function tryClipboardReadText() {
navigator.clipboard.readText()
.then(() => document.title = 'success')
.catch(() => document.title = 'fail');
}
function ... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/clipboard.html | HTML | unknown | 531 |
<html>
<body>
test
</body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/content-disposition.html | HTML | unknown | 35 |
<html>
<head>
<meta name="color-scheme" content="dark light">
</head>
<body></body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/dark_mode.html | HTML | unknown | 102 |
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1"></meta>
</head>
<body>
<p>Greetings planet</p>
</body>
<script>
function toggleFullscreen() {
if (!document.fullscreenElement) {
document.documentElement.requestFullscreen();
} else {
docume... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/display_cutout.html | HTML | unknown | 812 |
<html>
<body>
Navigation complete.
This file should not contain any forms.
</body>
</html> | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/done.html | HTML | unknown | 90 |
<html>
<head>
<style>
body, html {
height: 100%;
}
a {
display: block;
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<a href="lorem_ipsum.txt" download>anchor text</a>
</body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/download.html | HTML | unknown | 268 |
<html>
<head><title>This page is in English</title></head>
<body>
No joke! This is a page written in English. Awesome don't you think?
It has to be more than 100 bytes long for the CLD to detect the language correctly.
</body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/english_page.html | HTML | unknown | 235 |
<!DOCTYPE html>
<html>
<body>
<a id="button">
launch state activity
</a>
<script type="text/javascript">
document.getElementById('button').href = 'intent://state.app?return_to=' + window.location.href.split('#')[1] + '#Intent;scheme=webenginetest;action=android.inten... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/external_intents.html | HTML | unknown | 432 |
<html>
<body onclick="document.forms['form1'].submit();">
<form id="form1" action="simple_page.html" method="post">
<input type="text" name="name" value="Name"><br>
<input type="text" name="address" value="Address"><br>
<input type="text" name="city" value="City"><br>
</form>
</body>
</htm... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/form.html | HTML | unknown | 323 |
<html>
<head>
<title>fr_test.html</title>
<meta http-equiv="content-language" content="fr">
</head>
<body>
<div>bonjour WebLayer.</div>
</body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/fr_test.html | HTML | unknown | 158 |
<html>
<script>
function toggleFullscreen() {
if (!document.fullscreenElement) {
document.getElementById('x').requestFullscreen();
} else {
document.exitFullscreen();
}
}
</script>
<body onclick="toggleFullscreen();">
<p id='x'>X</p>
</body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/fullscreen.html | HTML | unknown | 304 |
<html>
<body>
<input id="x" type="text"/>
<p>Content for on screen keyboard testing.</p>
</body>
<script>
var actionCount = 0;
function doAction() {
if (actionCount++ == 1) {
document.documentElement.requestFullscreen();
} else {
document.getElementById("x").focus();
... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/fullscreen_with_input.html | HTML | unknown | 428 |
<html>
<head>
<title>Geolocation</title>
<script>
var positionCount = 0;
var errorCount = 0;
function gotPos(position) {
positionCount++;
}
function errorCallback(error) {
errorCount++;
}
function initiate_getCurrentPosition() {
navigator.geolocation.getCurrentPosition(... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/geolocation.html | HTML | unknown | 532 |
<html>
<head><title>Diese Seite ist in deutsch</title></head>
<body>
Kein Witz! Dies ist eine Seite in Deutsch. Großartig, findest du nicht?
Deutsch wird in vielen Ländern gesprochen und ist eine schöne Sprache. Ich hoffe, das ist genug Text, um CLD auszulösen.
</body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/german_page.html | HTML | unknown | 282 |
<!doctype html>
<html>
<head>
<script>
(async () => {
let stream = await navigator.mediaDevices.getUserMedia({video: true, audio: true});
audio.srcObject = new MediaStream(stream.getAudioTracks());
video.srcObject = new MediaStream(stream.getVideoTracks());
})();
</sc... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/getusermedia.html | HTML | unknown | 515 |
<!doctype html>
<html>
<head>
<script>
(async () => {
let stream = await navigator.mediaDevices.getUserMedia({video: false, audio: true});
audio.srcObject = new MediaStream(stream.getAudioTracks());
let streamV = await navigator.mediaDevices.getUserMedia({video: true, audio: fa... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/getusermedia2.html | HTML | unknown | 613 |
<html>
<head><title>Google accounts</title></head>
<body>
Google accounts page.
</body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/google_accounts.html | HTML | unknown | 96 |
<html><head><title>Blank iframe test</title></head>
<body>
<iframe id="test"></iframe>
</body></html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/iframe_blank.html | HTML | unknown | 102 |
<html>
<head>
<style>
body, html {
height: 100%;
}
img {
display: block;
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<img src="favicon.png" alt="alt_text" />
</body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/img.html | HTML | unknown | 261 |
<html>
<body>
<form action="about:blank">
<input id="input_file" type="file" />
<input id="input_text" type="file" accept="text/plain" />
<input id="input_any" type="file" accept="*/*" />
<input id="input_file_multiple" type="file" multiple />
<input id="input_image" type="file" acce... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/input_types.html | HTML | unknown | 547 |
<html>
<head><title>Page that displays an insecure form</title>
<script>
function submitForm() {
form = document.getElementById("insecureForm");
form.submit();
}
</script>
</head>
<body>
This page contains a form which targets a non-secure URL,
causing insecure content (when this page is loaded over https).<br>... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/insecure_form.html | HTML | unknown | 448 |
<html>
<body>
This page will prerender something.
<link rel="next" href="/prerendered_page.html">
</body>
<!-- Order is important for tests. -->
<head><title>Parent Page</title></head>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/link_rel_next_parent.html | HTML | unknown | 194 |
<!DOCTYPE html>
<html>
<head>
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
</head>
<body>
<a id='link'>
<script type="text/javascript">
document.getElementById('link').href = '/weblayer/test/data/page_that_intents_to_package_on_load.html' + window.location.ha... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/link_to_page_that_intents_to_package_on_load.html | HTML | unknown | 441 |
<!DOCTYPE html>
<html>
<head>
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
</head>
<body>
<a id='link' target='_blank'>
Click to intent to the package specified in the URL hash in a new tab
</a>
<script type="text/javascript">
document.getElementById('l... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/link_with_intent_to_package_in_new_tab.html | HTML | unknown | 495 |
<!DOCTYPE html>
<html>
<head>
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
</head>
<body>
<a id='link'>
Click to intent to the package specified in the URL hash in this tab
</a>
<script type="text/javascript">
document.getElementById('link').href = 'int... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/link_with_intent_to_package_in_same_tab.html | HTML | unknown | 478 |
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>MR Integration Basic Test</title>
<script type="text/javascript" src="common.js"></script>
</head>
<body>
</body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/media_router/basic_test.html | HTML | unknown | 212 |
/*
* Copyright 2020 The Chromium Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/*
* @fileoverview Test utilities for presentation integration tests.
*/
var startPresentationPromise = null;
var startedConnection = null;
var reconnectedConnection ... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/media_router/common.js | JavaScript | unknown | 9,654 |
<html>
<script>
function playAudio() {
let audio = document.createElement('audio');
audio.src = 'test_audio.ogg';
audio.play();
}
</script>
<body onclick="playAudio();">
<p>Some text so the document is ready for input.</p>
</body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/media_session.html | HTML | unknown | 277 |
<html>
<body onclick="window.open('about:blank', '');">
<p id='x'>XXXX</p>
</body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/new_browser.html | HTML | unknown | 99 |
<html>
<script>
var openedWindow = null;
function openNewWindowOrClose() {
if (openedWindow == null) {
openedWindow = window.open('about:blank', '');
} else {
openedWindow.close();
openedWindow = null;
}
}
</script>
<body onclick="openNewWindowOrClose();">
... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/new_tab_then_close.html | HTML | unknown | 359 |
<html>
<body>
404 with some body.
</body>
</html> | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/non_empty404.html | HTML | unknown | 49 |
<!DOCTYPE html>
<html>
<head>
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
</head>
<body>
<a id='link'>
Click to intent to the package specified in the URL hash in this tab
</a>
<script>
document.getElementById('link').href = 'intent://example.test#Intent... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/page_that_intents_to_package_on_load.html | HTML | unknown | 562 |
<html>
<body>
This page will prerender something.
<link rel="prerender" href="/prerendered_page.html">
</body>
<!-- Order is important for tests. -->
<head><title>Parent Page</title></head>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/parent_page.html | HTML | unknown | 199 |
<html>
<head><title>Page</title></head>
<body>
<h1>post message test page</h1>
</body>
<script>
let numMessages = 0;
window.addEventListener('message', e => {
numMessages++;
document.title = `postMessage: ${numMessages}`;
e.ports[0].postMessage(`message: ${e.data}, source: ${e.origin}`);
if (... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/postmessage.html | HTML | unknown | 581 |
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This isn't used anywhere.
var theScriptHasExecuted = true;
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/prefetch.js | JavaScript | unknown | 206 |
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This isn't used anywhere.
var theMetaScriptHasExecuted = true;
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/prefetch_meta.js | JavaScript | unknown | 210 |
<html>
<!--
A page that fetches only "prefetch.js" when scanned by NoStatePrefetch, and
fetches "prefetch_meta.js" in addition to that if javascript execution happens
on the page. In all cases the scripts are executed in a blocking manner.
By prefetching this page, a browsertest can verify that javascript was not
exec... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/prerendered_page.html | HTML | unknown | 1,282 |
<html>
<body style="padding: 0; margin: 0; display: grid; display: grid; grid-template-columns: 50% 50%; grid-template-rows: 50% 50%;\">
<div style="background-color: rgb(255, 0, 0);"></div>
<div style="background-color: rgb(0, 255, 0);"></div>
<div style="background-color: rgb(0, 0, 255);"></div>
<di... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/quadrant_colors.html | HTML | unknown | 393 |
<html>
<script>
var gotHide = false;
var gotOrientationChange = false;
var attachedListeners = false;
async function doRequestFullscreen() {
return document.documentElement.requestFullscreen();
}
async function toggleFullscreen() {
if (!attachedListeners) {
attachedListen... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/rotation.html | HTML | unknown | 955 |
<html>
<script>
async function toggleFullscreen() {
if (!document.fullscreenElement) {
await document.documentElement.requestFullscreen();
await screen.orientation.lock("landscape-primary");
} else {
document.exitFullscreen();
}
}
</script>
<body style="height:500... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/rotation2.html | HTML | unknown | 419 |
<html>
<body>
<p>
No, Time, thou shalt not boast that I do change:
Thy pyramids built up with newer might
To me are nothing novel, nothing strange;
They are but dressings of a former sight.
Our dates are brief, and therefore we admire
What thou dost foist upon us that is old,
... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/shakespeare.html | HTML | unknown | 728 |
<html>
<head><title>OK</title></head>
<body>
Basic html test.
</body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/simple_page.html | HTML | unknown | 78 |
<html>
<head><title>Yet another simple page</title></head>
<body>
Basic html test.
</body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/simple_page2.html | HTML | unknown | 99 |
<html>
<head><title>OK</title></head>
<body>
Basic html test2.
</body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/simple_page3.html | HTML | unknown | 79 |
<html>
<head><title>OK</title></head>
<body>
<meta http-equiv = "refresh" content = "2; url = simple_page.html" />
</body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/simple_page4.html | HTML | unknown | 137 |
<html>
<head>
<title>OK</title>
</head>
<body>
Basic html test.
</body>
<script>
function createFavicon() {
const link = document.createElement('link');
link.rel = 'icon';
link.href = 'favicon.png';
document.head.appendChild(link);
}
window.addEventListener('message', () => {
createFavicon()... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/simple_page_with_delayed_favicon.html | HTML | unknown | 344 |
<html>
<head>
<title>OK</title>
<link rel="icon" id="fi" type="image/png" href="favicon.png"/>
</head>
<body>
Basic html test.
</body>
<script>
setTimeout(() => {
const link = document.getElementById('fi');
document.head.removeChild(link);
}, 5000);
</script>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/simple_page_with_deleted_favicon.html | HTML | unknown | 284 |
<html>
<head>
<title>OK</title>
<link rel="icon" type="image/png" href="favicon.png"/>
</head>
<body>
Basic html test.
</body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/simple_page_with_favicon.html | HTML | unknown | 147 |
<html>
<head>
<title>OK</title>
<link rel="icon" type="image/png" href="favicon.png"/>
</head>
<body>
Basic html test.
</body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/simple_page_with_favicon2.html | HTML | unknown | 147 |
<html>
<head>
<title>OK</title>
<link rel="icon" type="image/png" href="favicon.png"/>
</head>
<body onbeforeunload="return runBeforeUnload()">
Basic html test with before unload and favicon
</body>
<script>
function runBeforeUnload() {
return "foo";
}
</script>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/simple_page_with_favicon_and_before_unload.html | HTML | unknown | 291 |
<html>
<head><title>OK</title></head>
<body>
Basic html with script test.
<script type="text/javascript" src="script.js"></script>
</body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/simple_page_with_script.html | HTML | unknown | 147 |
<html>
<body>
<form method="POST" action="done.html" onsubmit="return true;" id="testform">
<input type="text" id="username_field" name="username_field">
<input type="password" id="password_field" name="password_field">
<input type="submit" id="input_submit_button" name="input_submit_button">
</form>
</body>
</ht... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/simple_password_form.html | HTML | unknown | 324 |
<html>
<head>
<title>Simple Prefetch Page</title>
<script>
function linkOnload() {
document.title = 'link onload';
}
function linkOnerror() {
document.title = 'link onerror';
}
</script>
<link rel="prefetch"
href="prefetch_target.lnk"
onload="linkOnload()"
onerror="linkOnerror()"/>
</head>
<body>... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/simple_prefetch.html | HTML | unknown | 336 |
<p style='height:5000px'>Some text to paint</p>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/tall_page.html | HTML | unknown | 48 |
<html>
<body>
<p>A (mostly) empty page.</p>
</body>
<script>
var gotHide = false;
document.addEventListener("visibilitychange", function() {
if (document.visibilityState !== 'visible') {
gotHide = true;
}
});
</script>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/visibility.html | HTML | unknown | 271 |
<html>
<head><title>OK</title></head>
<script>
x.postMessage("from page");
x.addEventListener("message", function(event) {
x.postMessage("bouncing " + event.data);
});
</script>
<body>
</body>
</html>
| Zhao-PengFei35/chromium_src_4 | weblayer/test/data/web_message_test.html | HTML | unknown | 227 |
<html>
<head><title>OK</title></head>
<script>
x.postMessage("from page");
var handler2 = function(event) {
x.postMessage("bouncing " + event.data);
};
var handler1 = function(event) {
x.postMessage("bouncing " + event.data);
x.removeEventListener("message", handler2);
};... | Zhao-PengFei35/chromium_src_4 | weblayer/test/data/web_message_test2.html | HTML | unknown | 446 |
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "weblayer/test/interstitial_utils.h"
#include "components/security_interstitials/content/bad_clock_blocking_page.h"
#include "components/security_interstitials/conten... | Zhao-PengFei35/chromium_src_4 | weblayer/test/interstitial_utils.cc | C++ | unknown | 2,467 |
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef WEBLAYER_TEST_INTERSTITIAL_UTILS_H_
#define WEBLAYER_TEST_INTERSTITIAL_UTILS_H_
namespace weblayer {
class Tab;
// Contains utilities for aiding in testing an embedd... | Zhao-PengFei35/chromium_src_4 | weblayer/test/interstitial_utils.h | C++ | unknown | 1,120 |
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "weblayer/test/load_completion_observer.h"
#include "weblayer/public/navigation_controller.h"
#include "weblayer/public/tab.h"
#include "weblayer/shell/browser/shell.... | Zhao-PengFei35/chromium_src_4 | weblayer/test/load_completion_observer.cc | C++ | unknown | 872 |
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef WEBLAYER_TEST_LOAD_COMPLETION_OBSERVER_H_
#define WEBLAYER_TEST_LOAD_COMPLETION_OBSERVER_H_
#include "base/memory/raw_ptr.h"
#include "base/run_loop.h"
#include "webla... | Zhao-PengFei35/chromium_src_4 | weblayer/test/load_completion_observer.h | C++ | unknown | 1,176 |
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/functional/bind.h"
#include "base/test/launcher/unit_test_launcher.h"
#include "content/public/test/content_test_suite_base.h"
#include "content/public/test/unit... | Zhao-PengFei35/chromium_src_4 | weblayer/test/run_all_unittests.cc | C++ | unknown | 1,697 |
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "weblayer/test/stub_autofill_provider.h"
namespace weblayer {
StubAutofillProvider::StubAutofillProvider(
content::WebContents* web_contents,
const base::Rep... | Zhao-PengFei35/chromium_src_4 | weblayer/test/stub_autofill_provider.cc | C++ | unknown | 995 |
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef WEBLAYER_TEST_STUB_AUTOFILL_PROVIDER_H_
#define WEBLAYER_TEST_STUB_AUTOFILL_PROVIDER_H_
#include "base/functional/callback_forward.h"
#include "components/android_auto... | Zhao-PengFei35/chromium_src_4 | weblayer/test/stub_autofill_provider.h | C++ | unknown | 1,677 |
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "weblayer/test/subresource_filter_browser_test_harness.h"
#include "build/build_config.h"
#include "components/heavy_ad_intervention/heavy_ad_service.h"
#include "com... | Zhao-PengFei35/chromium_src_4 | weblayer/test/subresource_filter_browser_test_harness.cc | C++ | unknown | 6,466 |
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef WEBLAYER_TEST_SUBRESOURCE_FILTER_BROWSER_TEST_HARNESS_H_
#define WEBLAYER_TEST_SUBRESOURCE_FILTER_BROWSER_TEST_HARNESS_H_
#include <string>
#include <vector>
#include... | Zhao-PengFei35/chromium_src_4 | weblayer/test/subresource_filter_browser_test_harness.h | C++ | unknown | 2,576 |
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "weblayer/test/test_launcher_delegate_impl.h"
#include "base/command_line.h"
#include "base/test/test_suite.h"
#include "build/build_config.h"
#include "weblayer/app/... | Zhao-PengFei35/chromium_src_4 | weblayer/test/test_launcher_delegate_impl.cc | C++ | unknown | 1,050 |
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef WEBLAYER_TEST_TEST_LAUNCHER_DELEGATE_IMPL_H_
#define WEBLAYER_TEST_TEST_LAUNCHER_DELEGATE_IMPL_H_
#include "build/build_config.h"
#include "content/public/test/test_la... | Zhao-PengFei35/chromium_src_4 | weblayer/test/test_launcher_delegate_impl.h | C++ | unknown | 740 |
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "weblayer/test/test_navigation_observer.h"
#include "base/test/bind.h"
#include "url/gurl.h"
#include "weblayer/public/navigation.h"
#include "weblayer/public/navigat... | Zhao-PengFei35/chromium_src_4 | weblayer/test/test_navigation_observer.cc | C++ | unknown | 2,326 |
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef WEBLAYER_TEST_TEST_NAVIGATION_OBSERVER_H_
#define WEBLAYER_TEST_TEST_NAVIGATION_OBSERVER_H_
#include "base/memory/raw_ptr.h"
#include "base/run_loop.h"
#include "third... | Zhao-PengFei35/chromium_src_4 | weblayer/test/test_navigation_observer.h | C++ | unknown | 1,956 |
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "weblayer/test/weblayer_browser_test.h"
#include "base/base_paths.h"
#include "base/command_line.h"
#include "components/embedder_support/switches.h"
#include "conten... | Zhao-PengFei35/chromium_src_4 | weblayer/test/weblayer_browser_test.cc | C++ | unknown | 2,673 |
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef WEBLAYER_TEST_WEBLAYER_BROWSER_TEST_H_
#define WEBLAYER_TEST_WEBLAYER_BROWSER_TEST_H_
#include "base/memory/raw_ptr.h"
#include "content/public/test/browser_test.h"
#i... | Zhao-PengFei35/chromium_src_4 | weblayer/test/weblayer_browser_test.h | C++ | unknown | 1,403 |
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "weblayer/test/weblayer_browser_test.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "weblayer/test/weblayer_browser_test_utils.h"
namesp... | Zhao-PengFei35/chromium_src_4 | weblayer/test/weblayer_browser_test_test.cc | C++ | unknown | 578 |
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "weblayer/test/weblayer_browser_test_utils.h"
#include "base/run_loop.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/bind.h"
#include "build/... | Zhao-PengFei35/chromium_src_4 | weblayer/test/weblayer_browser_test_utils.cc | C++ | unknown | 5,429 |
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef WEBLAYER_TEST_WEBLAYER_BROWSER_TEST_UTILS_H_
#define WEBLAYER_TEST_WEBLAYER_BROWSER_TEST_UTILS_H_
#include <string>
#include "base/functional/callback_forward.h"
#inc... | Zhao-PengFei35/chromium_src_4 | weblayer/test/weblayer_browser_test_utils.h | C++ | unknown | 4,218 |
#!/usr/bin/env python
# Copyright 2019 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from __future__ import absolute_import
from __future__ import print_function
import argparse
import os
import subprocess
import sys
sys.path.insert(0, os.pa... | Zhao-PengFei35/chromium_src_4 | weblayer/tools/run_webengine_shell.py | Python | unknown | 3,291 |
# Copyright (c) 2020 Huawei Device Co., Ltd.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed t... | yuzhewang/docs | docker/Dockerfile | Dockerfile | public-domain | 5,461 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Hexo Theme Redefine">
<meta name="author" content="xiaoeryu">
<!-- preconnect -->
<link rel="preconnect" href="https://fonts.... | Zayn-Liu/hexo | 2021/05/19/CVE-2010-2883-Adobe-Reader-TTF字体SING表栈溢出漏洞/index.html | HTML | unknown | 57,054 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Hexo Theme Redefine">
<meta name="author" content="xiaoeryu">
<!-- preconnect -->
<link rel="preconnect" href="https://fonts.... | Zayn-Liu/hexo | 2021/05/19/CVE-2012-0158/index.html | HTML | unknown | 40,229 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Hexo Theme Redefine">
<meta name="author" content="xiaoeryu">
<!-- preconnect -->
<link rel="preconnect" href="https://fonts.... | Zayn-Liu/hexo | 2021/05/19/mm木马分析/index.html | HTML | unknown | 50,071 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Hexo Theme Redefine">
<meta name="author" content="xiaoeryu">
<!-- preconnect -->
<link rel="preconnect" href="https://fonts.... | Zayn-Liu/hexo | 2021/05/20/CVE-2009-0927-PDF中的JS/index.html | HTML | unknown | 37,546 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Hexo Theme Redefine">
<meta name="author" content="xiaoeryu">
<!-- preconnect -->
<link rel="preconnect" href="https://fonts.... | Zayn-Liu/hexo | 2021/05/20/exploit编写系列1-Easy-RM-to-MP3-漏洞调试/index.html | HTML | unknown | 40,984 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Hexo Theme Redefine">
<meta name="author" content="xiaoeryu">
<!-- preconnect -->
<link rel="preconnect" href="https://fonts.... | Zayn-Liu/hexo | 2021/05/20/exploit编写系列2:栈溢出,跳转至shellcode/index.html | HTML | unknown | 76,786 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Hexo Theme Redefine">
<meta name="author" content="xiaoeryu">
<!-- preconnect -->
<link rel="preconnect" href="https://fonts.... | Zayn-Liu/hexo | 2021/05/20/go环境变量设置/index.html | HTML | unknown | 29,509 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Hexo Theme Redefine">
<meta name="author" content="xiaoeryu">
<!-- preconnect -->
<link rel="preconnect" href="https://fonts.... | Zayn-Liu/hexo | 2021/05/20/winDbg安装mona/index.html | HTML | unknown | 30,151 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Hexo Theme Redefine">
<meta name="author" content="xiaoeryu">
<!-- preconnect -->
<link rel="preconnect" href="https://fonts.... | Zayn-Liu/hexo | 2021/05/20/堆结构/index.html | HTML | unknown | 34,042 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Hexo Theme Redefine">
<meta name="author" content="xiaoeryu">
<!-- preconnect -->
<link rel="preconnect" href="https://fonts.... | Zayn-Liu/hexo | 2021/05/21/HW样本分析/index.html | HTML | unknown | 33,774 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Hexo Theme Redefine">
<meta name="author" content="xiaoeryu">
<!-- preconnect -->
<link rel="preconnect" href="https://fonts.... | Zayn-Liu/hexo | 2021/05/24/ARM汇编笔记/index.html | HTML | unknown | 31,485 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Hexo Theme Redefine">
<meta name="author" content="xiaoeryu">
<!-- preconnect -->
<link rel="preconnect" href="https://fonts.... | Zayn-Liu/hexo | 2021/05/24/Cobalt-Strike使用(一)/index.html | HTML | unknown | 35,027 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Hexo Theme Redefine">
<meta name="author" content="xiaoeryu">
<!-- preconnect -->
<link rel="preconnect" href="https://fonts.... | Zayn-Liu/hexo | 2021/05/24/Ocean-Lotus样本分析/index.html | HTML | unknown | 45,793 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Hexo Theme Redefine">
<meta name="author" content="xiaoeryu">
<!-- preconnect -->
<link rel="preconnect" href="https://fonts.... | Zayn-Liu/hexo | 2021/05/24/一枚简单的未知壳/index.html | HTML | unknown | 38,383 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Hexo Theme Redefine">
<meta name="author" content="xiaoeryu">
<!-- preconnect -->
<link rel="preconnect" href="https://fonts.... | Zayn-Liu/hexo | 2021/05/25/Cobalt-Strike-二/index.html | HTML | unknown | 31,355 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Hexo Theme Redefine">
<meta name="author" content="xiaoeryu">
<!-- preconnect -->
<link rel="preconnect" href="https://fonts.... | Zayn-Liu/hexo | 2021/05/26/Cobalt-Strike-三/index.html | HTML | unknown | 34,252 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Hexo Theme Redefine">
<meta name="author" content="xiaoeryu">
<!-- preconnect -->
<link rel="preconnect" href="https://fonts.... | Zayn-Liu/hexo | 2021/05/28/Cobalt-Strike-五/index.html | HTML | unknown | 37,717 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Hexo Theme Redefine">
<meta name="author" content="xiaoeryu">
<!-- preconnect -->
<link rel="preconnect" href="https://fonts.... | Zayn-Liu/hexo | 2021/05/28/Cobalt-Strike-四/index.html | HTML | unknown | 28,514 |