-
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 52.0.2871.87
- Loading branch information
Łukasz Bendig
committed
Apr 26, 2018
1 parent
e4ac8c3
commit c7d542d
Showing
6,826 changed files
with
261,271 additions
and
113,575 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
Binary file modified
BIN
+1.09 KB
(100%)
...droid/render_tests/BookmarkTest.bookmark_manager_folder_selected.Nexus_5-19.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1.15 KB
(100%)
...ta/android/render_tests/BookmarkTest.bookmark_manager_one_folder.Nexus_5-19.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2.25 KB
(120%)
...src/chrome/test/data/android/render_tests/NewTabPageTest.fakebox.Nexus_5-19.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2.44 KB
(100%)
...hrome/test/data/android/render_tests/NewTabPageTest.new_tab_page.Nexus_5-19.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2.78 KB
(100%)
...t/data/android/render_tests/NewTabPageTest.new_tab_page_scrolled.Nexus_5-19.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions
25
lgpl/sources/chromium/src/chrome/test/data/autofill/frame_detached_on_form_submit.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,25 @@ | ||
<html> | ||
<body> | ||
|
||
<script> | ||
|
||
function delayedUpload() { | ||
window.domAutomationController.send("SUBMISSION_FINISHED"); | ||
} | ||
|
||
function receiveMessage(event) { | ||
var address_iframe = document.getElementById('address_iframe'); | ||
address_iframe.parentNode.removeChild(address_iframe); | ||
setTimeout(delayedUpload, 0); | ||
} | ||
|
||
window.addEventListener("message", receiveMessage, false); | ||
|
||
</script> | ||
|
||
<iframe src="inner_frame_address_form.html" id="address_iframe" name="address_iframe"> | ||
</iframe> | ||
|
||
|
||
</body> | ||
</html> |
25 changes: 25 additions & 0 deletions
25
lgpl/sources/chromium/src/chrome/test/data/autofill/frame_detached_on_formless_submit.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,25 @@ | ||
<html> | ||
<body> | ||
|
||
<script> | ||
|
||
function delayedUpload() { | ||
window.domAutomationController.send("SUBMISSION_FINISHED"); | ||
} | ||
|
||
function receiveMessage(event) { | ||
var address_iframe = document.getElementById('address_iframe'); | ||
address_iframe.parentNode.removeChild(address_iframe); | ||
setTimeout(delayedUpload, 0); | ||
} | ||
|
||
window.addEventListener("message", receiveMessage, false); | ||
|
||
</script> | ||
|
||
<iframe src="inner_frame_address_formless.html" id="address_iframe" name="address_iframe"> | ||
</iframe> | ||
|
||
|
||
</body> | ||
</html> |
15 changes: 15 additions & 0 deletions
15
lgpl/sources/chromium/src/chrome/test/data/autofill/inner_frame_address_form.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,15 @@ | ||
<html> | ||
<body> | ||
|
||
<script> | ||
function send_post() { | ||
window.parent.postMessage("SubmitComplete", "*"); | ||
} | ||
</script> | ||
<form action="inner_frame_address_form.html" onsubmit="send_post(); return false;" | ||
id="deleting_form"> | ||
<input type="text" id="address_field" name="address" autocomplete="on"> | ||
<input type="submit" id="submit_button" name="submit_button"> | ||
</form> | ||
</body> | ||
</html> |
12 changes: 12 additions & 0 deletions
12
lgpl/sources/chromium/src/chrome/test/data/autofill/inner_frame_address_formless.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,12 @@ | ||
<html> | ||
<body> | ||
|
||
<script> | ||
function send_post() { | ||
window.parent.postMessage("SubmitComplete", "*"); | ||
} | ||
</script> | ||
<input type="text" id="address_field" name="address" autocomplete="on"> | ||
<input type="button" id="submit_button" name="submit_button" onclick="send_post()"> | ||
</body> | ||
</html> |
18 changes: 18 additions & 0 deletions
18
lgpl/sources/chromium/src/chrome/test/data/chromedriver/cross_domain_iframe.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,18 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Contains a nested (hopefully OOPIF) iframe</title> | ||
</head> | ||
<body> | ||
<script> | ||
document.body.onload = () => { | ||
let iframe = document.getElementsByTagName('iframe')[0]; | ||
pathname = window.location.pathname.replace('cross_domain_iframe', 'outer'); | ||
iframe.src = (window.location.protocol + '//' + 'localhost' + | ||
':' + window.location.port + pathname); | ||
} | ||
</script> | ||
<p><a href="#one">One</a></p> | ||
<iframe> | ||
</body> | ||
</html> |
50 changes: 50 additions & 0 deletions
50
lgpl/sources/chromium/src/chrome/test/data/chromedriver/invalid_ssl_cert.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,50 @@ | ||
-----BEGIN RSA PRIVATE KEY----- | ||
MIIEowIBAAKCAQEAn1Ze8Zm9iS7tz0r7ZfiUKv5dM6LRL5CwkHFVZfmDwYy+wmAT | ||
+cZOYIY2mipzlqdPtSaaYWOBF8pRgtpfobf9I2LTfUlXyslJSrbU9wuYN4KXwtkg | ||
4LzYpBmBDOM7Te86onGpwHMVa/jcuA1+ievq2Joo5KBGFHO/PXr+wHxx50HFi3PA | ||
osGUwAfiv+ZSaAT3MF4mSjlapQ7PkE3PAEqIhCa5HpHW1Bth4lLBZLKUPI0iY3JJ | ||
HXQhh2vFRHY9Km8tFoG9lLz7oiizHn7ibrBaeUiCrgIvTw7tZYjy4I67L6o1Jcyd | ||
RH9jfH9diLyKZuu9byNk4f/1AyjTtFHSNszNRwIDAQABAoIBAE6JdQzi+aBXqFIH | ||
pHizmNzEOc5Mz40BZXYc1roHzaCmLhSC5PW1gEZlgR5mFElKuKgSmf+s2yGN0LWN | ||
y5tbpANAH/xeHU7P/jc8fSYz6dhan1EkUudTTfk8tPZUPpQAecc9/SzlzMZGiQyT | ||
Yi67QSt4ePWP5lsIXlgAevcHn+EbK+KccRV2t3zkGiTlxVxFPNJNkEua5E28eXfw | ||
jN4qXw6cfmeZApk1nQ8tw49egARzwzYlm7tXyM/+MK+dzj6cB9A13VeN4nrw93jQ | ||
keyx9xawP5opd31nX5ZYEdqviPmvYHgXeie6F/dXXXKvjMIvS5HLvhGLomQa9WPP | ||
MUVVmgECgYEA04V0h3YwpnAkhY4Bqq3L8NqNp0AbDm0Yrk9gF8W5BkXHI63LwAIt | ||
JGHr1aLXpZZquNCunV7WE8fiCnfP+deR+RVZeXrjwmATCpZ3ZSNnwsW4jqiOgBJJ | ||
FRFB24ZW8fjmcBAiXff734m52RK7GOu/Olvf2rVi1E/NV8rlNSa85kcCgYEAwNfE | ||
oOulfRdc1mpDnCoiYeVbL615XTp/yvKRAM5uL3m6Gj8Mnqbxp11mHVnAoE+kpVwj | ||
lm9M4Im+TGoHAQtAf+JU7T12JUHFoPkB1URXmKOphE7L/r/ibCnl0ZU/c73RsVsO | ||
cMnkft92tpoOabV4LnWwejH9QAWpyWFQ/pE5YQECgYEArqTO7RXB33pSPU9dwu3S | ||
qF/be49rh4K+URXKknY3aZ1taeESjMt/OD39eZwFj3vdTBFJSzhFa3mrAdehCXla | ||
1h0xjiLQMOogbqqDlCcigee8lVVIqyft3Y4tITMPUKSgp0A7D/kzpoLRxxA3GMF1 | ||
V5sJ/kureP8W3XjxvOvqJfsCgYBCjnW7wHjmWpjdG+Hn1Rb2yK0XIH1Bsv4GMn/f | ||
Ul/vHMkhY99cJmxDAlZLDP4RlktSEyHpOtLCsGewgeuW7aY+PQRouQy8wR2PeEGs | ||
tKCy+tF366Y2b02bXT6HfkZfEQV9e9rZDKVDMKcNUNBmpY4sIsxc8EHixdGawm6s | ||
3bx7AQKBgARZYHZxra+LMTlrrGlqaUg/iJR6CtYtHUNcl+9CGRzH6lizyZxNCIbq | ||
pzRpW62UWZErkrI8IFxMuF31YfGzlE/1vRl6Bcb6AX+0ldxv1OurtaXDuPY6+r+m | ||
TptL7Ozh7iUxBtPqo8vLA9sHHxLZxc4nt/yubl2kre+4MJhaIXVb | ||
-----END RSA PRIVATE KEY----- | ||
-----BEGIN CERTIFICATE----- | ||
MIIDvjCCAqYCCQD+CD/Svt7GzzANBgkqhkiG9w0BAQUFADCBoDEYMBYGA1UEAwwP | ||
aW52YWxpZC1zc2wuY29tMRQwEgYDVQQKDAtJbnZhbGlkIFNTTDEUMBIGA1UECwwL | ||
SW52YWxpZCBTU0wxEDAOBgNVBAcMB0ludmFsaWQxEzARBgNVBAgMCkNhbGlmb3Ju | ||
aWExCzAJBgNVBAYTAlVTMSQwIgYJKoZIhvcNAQkBFhVhZG1pbkBpbnZhbGlkLXNz | ||
bC5jb20wHhcNMTcxMjA2MTE0NTE3WhcNMTgxMjA2MTE0NTE3WjCBoDEYMBYGA1UE | ||
AwwPaW52YWxpZC1zc2wuY29tMRQwEgYDVQQKDAtJbnZhbGlkIFNTTDEUMBIGA1UE | ||
CwwLSW52YWxpZCBTU0wxEDAOBgNVBAcMB0ludmFsaWQxEzARBgNVBAgMCkNhbGlm | ||
b3JuaWExCzAJBgNVBAYTAlVTMSQwIgYJKoZIhvcNAQkBFhVhZG1pbkBpbnZhbGlk | ||
LXNzbC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCfVl7xmb2J | ||
Lu3PSvtl+JQq/l0zotEvkLCQcVVl+YPBjL7CYBP5xk5ghjaaKnOWp0+1JpphY4EX | ||
ylGC2l+ht/0jYtN9SVfKyUlKttT3C5g3gpfC2SDgvNikGYEM4ztN7zqicanAcxVr | ||
+Ny4DX6J6+rYmijkoEYUc789ev7AfHHnQcWLc8CiwZTAB+K/5lJoBPcwXiZKOVql | ||
Ds+QTc8ASoiEJrkekdbUG2HiUsFkspQ8jSJjckkddCGHa8VEdj0qby0Wgb2UvPui | ||
KLMefuJusFp5SIKuAi9PDu1liPLgjrsvqjUlzJ1Ef2N8f12IvIpm671vI2Th//UD | ||
KNO0UdI2zM1HAgMBAAEwDQYJKoZIhvcNAQEFBQADggEBAJPhpixaBJsJb/FiMt57 | ||
32l1Ic4aRzvrZlMo8spb6sDR+0qiMmr2uNxnU0Q16sQkYKHXS37G0rgRgnFN0dPq | ||
tEYG5EzgfZGiJioLcpRlv8lybzFwPoAe0E6sF+Wd2GY90ZTetUPsdlWoA/9NYBXz | ||
5kVdQTF3A26bj9o3lV633wb9Iy1TKsMO0gXBRhRTbMVAfL4pi1PMMEg96dnqH4jY | ||
lBK2vzu0QWvP8VYwCarL1CjWF3PFk07fciNc6K+JhzR2fbsWfmkZCtpk5cfuuTVC | ||
cGaQKa2cHtwrwWTEnfJYc/mUK5BPXWKo2EBh+qEIbyXYfAQYLYgPQ/bNVzr8/xau | ||
ULs= | ||
-----END CERTIFICATE----- |
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
5 changes: 5 additions & 0 deletions
5
lgpl/sources/chromium/src/chrome/test/data/content_setting_bubble/mixed_script.js
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 @@ | ||
// Copyright 2018 The Chromium Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
document.title = "mixed_script_ran_successfully"; |
16 changes: 16 additions & 0 deletions
16
...romium/src/chrome/test/data/content_setting_bubble/mixed_script_in_cross_site_iframe.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,16 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Mixed content in cross-site iframe test</title> | ||
</head> | ||
<body> | ||
<script> | ||
// The test using this document supplies the URL for an iframe to be created | ||
// as a query parameter. The following piece of code creates an iframe with | ||
// the supplied URL and adds it to the DOM. | ||
var f = document.createElement('iframe'); | ||
f.src = location.search.substring(1); | ||
document.body.appendChild(f); | ||
</script> | ||
</body> | ||
</html> |
Oops, something went wrong.