-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding sources of Opera 53.0.2907.117
- Loading branch information
Lukasz Bendig
committed
Jun 29, 2018
1 parent
c7d542d
commit 545b49b
Showing
5,106 changed files
with
138,519 additions
and
64,107 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
lgpl/sources/chromium/src/chrome/test/data/android/subresource_filter/page-with-img.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<!DOCTYPE html> | ||
<img id="image" src="../capybara.jpg"/> | ||
<script> | ||
imgLoaded = false; | ||
var img = document.getElementById("image"); | ||
img.onload = () => { imgLoaded = true; } | ||
</script> |
17 changes: 17 additions & 0 deletions
17
lgpl/sources/chromium/src/chrome/test/data/android/test.mht
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
From: <Saved by UnMHT> | ||
Subject: Test | ||
Date: Mon, Nov 21 2011 10:59:06 GMT-0800 | ||
MIME-Version: 1.0 | ||
Content-Type: multipart/related; | ||
boundary="----=_NextPart_000_0000_0324C3DC.A3C79392"; | ||
type="text/html" | ||
|
||
------=_NextPart_000_0000_0324C3DC.A3C79392 | ||
Content-Type: text/html; charset="UTF-8" | ||
Content-Transfer-Encoding: quoted-printable | ||
Content-Location: http://www.example.com | ||
|
||
<html> | ||
Welcome! | ||
</html> | ||
------=_NextPart_000_0000_0324C3DC.A3C79392-- |
28 changes: 28 additions & 0 deletions
28
lgpl/sources/chromium/src/chrome/test/data/autofill/label_change.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
</head> | ||
<body> | ||
<script> | ||
|
||
function delayedUpload() { | ||
window.domAutomationController.send("SUBMISSION_FINISHED"); | ||
console.log("delayedUpload") | ||
} | ||
|
||
function send_post() { | ||
setTimeout(delayedUpload, 0); | ||
} | ||
|
||
</script> | ||
|
||
<form action="" onsubmit="send_post(); return false;"> | ||
<label id="label_id"> Address </label> | ||
<input type="text" id="address" name="address" autocomplete="on"> | ||
|
||
<p id="p_id">Address 1</p> | ||
<input type="text" name="address1" autocomplete="on"> | ||
<input type="submit" id="submit_button" name="submit_button"> | ||
</form> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 8 additions & 2 deletions
10
lgpl/sources/chromium/src/chrome/test/data/banners/manifest_no_service_worker.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
<html> | ||
<head> | ||
<title>Web app banner test page</title> | ||
<link rel="manifest" href="manifest.json" /> | ||
<script src="main.js"></script> | ||
<script> | ||
// If a "manifest=/path/to/manifest.json" query argument is provided to | ||
// the URL accessing this page, that path is injected as the manifest tag. | ||
// Otherwise, "manifest.json" is used as the manifest tag. | ||
addManifestLinkTag(); | ||
</script> | ||
</head> | ||
<body> | ||
<body onload="initialize()"> | ||
Do-nothing page with a manifest but no service worker. | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 8 additions & 4 deletions
12
lgpl/sources/chromium/src/chrome/test/data/banners/no_sw_fetch_handler_test_page.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
<html> | ||
<head> | ||
<link rel="manifest" href="manifest.json" /> | ||
<title>Web app banner test page</title> | ||
<script src="main.js"></script> | ||
<script> | ||
navigator.serviceWorker.register('service_worker_no_fetch_handler.js'); | ||
// If a "manifest=/path/to/manifest.json" query argument is provided to | ||
// the URL accessing this page, that path is injected as the manifest tag. | ||
// Otherwise, "manifest.json" is used as the manifest tag. | ||
addManifestLinkTag(); | ||
</script> | ||
</head> | ||
<body> | ||
Page with a service worker missing a fetch handler. | ||
<body onload="initializeWithWorker('service_worker_no_fetch_handler.js')"> | ||
Do-nothing page with a manifest and a service worker missing a fetch handler. | ||
</body> | ||
</html> |
5 changes: 5 additions & 0 deletions
5
lgpl/sources/chromium/src/chrome/test/data/browsing_data/a.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<html> | ||
<body> | ||
<h1>A</h1> | ||
</body> | ||
</html> |
5 changes: 5 additions & 0 deletions
5
lgpl/sources/chromium/src/chrome/test/data/browsing_data/b.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<html> | ||
<body> | ||
<h1>B</h1> | ||
</body> | ||
</html> |
5 changes: 5 additions & 0 deletions
5
lgpl/sources/chromium/src/chrome/test/data/browsing_data/c.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<html> | ||
<body> | ||
<h1>C</h1> | ||
</body> | ||
</html> |
5 changes: 5 additions & 0 deletions
5
lgpl/sources/chromium/src/chrome/test/data/browsing_data/d.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<html> | ||
<body> | ||
<h1>D</h1> | ||
</body> | ||
</html> |
Empty file.
2 changes: 2 additions & 0 deletions
2
...hromium/src/chrome/test/data/captive_portal/redirect_to_mock_https.html.mock-http-headers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
HTTP/1.0 301 Moved permanently | ||
Location: https://mock.captive.portal.long.timeout/title2.html |
28 changes: 28 additions & 0 deletions
28
...ources/chromium/src/chrome/test/data/chromeos/app_mode/management_api/primary_app/key.pem
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
-----BEGIN PRIVATE KEY----- | ||
MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQC3aFAcHk8yszLB | ||
n+3LtibvlyPBmh2BLKq7t9A03LKx7zbFVCxxX9N+KMfXFvAW+craT/yyAYV3KOsF | ||
V6hyTr4QnSJ4WP8u9HRgLLkrbHgnnlzsd74NKz0IpwREd4AG/AhAtA2znX9wZFdN | ||
3//vLzTp1+QLbqvj5dWGJatgXKXwuaHyL8S2UrtmwZEBMrMH1ju9QpltWatYdAv5 | ||
73x950hBTh6ow6S3qMlOAGuJEtrk++7opMn4FLO3dhYrPv7zDX6RHiaqYMQpAaDe | ||
BQmMgV4gUeiZAYvgbra7T/KI7EgmKwvu0lypcpUIOCy2tIwMVjzvnH4xRk+ljbxA | ||
Yo39jYX7AgMBAAECggEAK2A4vgWvDlsSMHfN6gVI3RYeJz33J2M0d9PnonDltC5S | ||
gkW/gwq6PpaPeL+chZqLDqmnJkQ01/Mt7iQGmw4jZlN7YQIPTAAVe99n5aywGBKc | ||
gHJrWLr2otK5MCYg+cXmf8L1kJq5lo+slCbbZSqBdaKQ9OE2Nt5W6vSCvPX8attd | ||
Y+K7mSFsOqchVGKNj2x6TKNt2W0MNRgNqR3dZlf4qRw/JhRgUrJLQjy+NeUaZFM4 | ||
OZK4tS2Riq8b2ROBi4agio1lGc9nY5wKwl7zsV83bPEmWYL0t0PnL0muBRlVrRG6 | ||
1LnGdeOMGg7XU8JI6xSxHdnBRLsVyC0XqTV0FIUphQKBgQDr6uB8w2p846XWcU6P | ||
KWsN74AjvXyEZCgOtppDYcl6Am8Z5A/zGc+fd/lkxgHrS4V9/ZM15REHSF7B4jaF | ||
qstvHu0crocrn1K3mCW0bKXcDP4tiNVTnGZyIL/jLK6PbDHX7dux631MhcWzjf9H | ||
PeFmFqDTglCevsZZCBv58Ut/nwKBgQDHBSK+f9wsPlO2V4FWndzXyHZVqd66MJHx | ||
AT22Gr9nk6DBOfHuIefDz+ZVIZozgCphi24It3Mduc9dmP4fwuyo6nmm57uMev4p | ||
C5LG2DWtCGASdVtlWCXK1vugwHut5sBtw2VbyifTCpQUDPVPKAhe/mU7I23sgXv3 | ||
iNNYVRNsJQKBgQDWD0tbyVBxO3n5JtxaSAGMJnlFdKRr2BkEqKk2ZJ8UZur6OhZC | ||
xXO/RXPz/To2jlL068XMDCm0SvU3xRMlm8B09kG9WZrqeOjsD1B+8mpYTS3AkTzH | ||
Xc0S1yZlceB94HUlcPx75qnNaj/l2Pz9XmeLYxLQd5jBQWbl19bSph+UDwKBgQCJ | ||
B9w4Vkj+nZt9/RoszVz1piz0JpYYlMCntDcNX7VSV69j28XcNLQjes4Y554Iv8Ju | ||
j1Yf4k/8s6c3xtOSgt/4HhnM9dmIjFbbZACXsN6kWRPtIajgSqUa2JNAx8dgoXT1 | ||
Hoh3fuWUxb/XXmS5L9MztO12nppdMXptoWQDefB5kQKBgEZLaz4xukznI6YpKy5R | ||
pA2iHpLzHEcDW8dmvKq93LGqfrvq+hs5vXW5UXWHFopkjb1sRkQ0apNuaD7QeQ0S | ||
eNdEc5c7lLW2krDP64mpHfGVSKmsuvqBuVHkMONp6h8YAbuOkB2Rw594FBz3Xwuo | ||
FW8WIqaeB/5nmx/emYZD/TsV | ||
-----END PRIVATE KEY----- |
Oops, something went wrong.