-
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 for Opera 71.0.3770.182
- Loading branch information
Lukasz Bendig
committed
Sep 28, 2020
1 parent
b537a04
commit 1528ec6
Showing
17,975 changed files
with
1,276,488 additions
and
2,104,158 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
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
1 change: 1 addition & 0 deletions
1
lgpl/sources/chromium/src/buildtools/third_party/eu-strip/OWNERS
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,3 +1,4 @@ | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] |
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
14 changes: 14 additions & 0 deletions
14
lgpl/sources/chromium/src/chrome/test/data/accessibility/image_annotation_augment.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,14 @@ | ||
<!DOCTYPE html> | ||
<body> | ||
<!-- Images with existing non-trivial alt text should not be annotated. --> | ||
<img src="red.png" alt="throwing a frisbee" width=16 height=16> | ||
<img src="green.png" alt="potatoes" width=16 height=16> | ||
|
||
<!-- Images with only "stopwords" in their alt text should be annotated. --> | ||
<img src="/android/UiCapture/frog.jpg" alt="the" width=50 height=50> | ||
<img src="/android/UiCapture/train.png" alt="photo background" width=50 height=50> | ||
<img src="/android/UiCapture/cloud.png" alt="12345678.jpg" width=50 height=50> | ||
<img src="/android/UiCapture/goat.jpg" alt="Sunday, Feb 6, 1966" width=50 height=50> | ||
<img src="/android/UiCapture/dog.jpg" alt="fotografia bianca e nero" width=50 height=50> | ||
|
||
</body> |
15 changes: 15 additions & 0 deletions
15
lgpl/sources/chromium/src/chrome/test/data/accessibility/image_annotation_augment_links.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 @@ | ||
<!DOCTYPE html> | ||
<body> | ||
<!-- If there's an image containing just stopwords in a link, | ||
both should be annotated. --> | ||
<a href="#"> | ||
<img src="/android/UiCapture/train.png" alt="photo background" width=50 height=50> | ||
</a> | ||
|
||
<!-- If the link has its own name and it's not just stopwords, | ||
the link shouldn't get annotated. --> | ||
<a href="#" aria-label="Link to more details on frogs"> | ||
<img src="/android/UiCapture/frog.jpg" alt="the" width=50 height=50> | ||
</a> | ||
|
||
</body> |
6 changes: 6 additions & 0 deletions
6
lgpl/sources/chromium/src/chrome/test/data/ad_tagging/ad.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,6 @@ | ||
<html> | ||
<body> | ||
This is an ad. Tests which require an ad frame should use this page, | ||
and explictly disallow this resource path. | ||
</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
File renamed without changes.
13 changes: 13 additions & 0 deletions
13
lgpl/sources/chromium/src/chrome/test/data/ad_tagging/sheet_with_vanilla_resources.css
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,13 @@ | ||
/* Copyright 2020 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. | ||
*/ | ||
@font-face { | ||
font-family: "Vanilla"; | ||
src: url("font.woff2") format("woff2"); | ||
} | ||
|
||
.test { | ||
font-family: "Vanilla"; | ||
background-image: url("pixel.png"); | ||
} |
6 changes: 6 additions & 0 deletions
6
lgpl/sources/chromium/src/chrome/test/data/ad_tagging/test_div.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,6 @@ | ||
<html> | ||
<head></head> | ||
<body> | ||
<div class="test">Test</div> | ||
</body> | ||
</html> |
13 changes: 12 additions & 1 deletion
13
lgpl/sources/chromium/src/chrome/test/data/ads_observer/ad_iframe_writer.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 |
---|---|---|
@@ -1,7 +1,18 @@ | ||
// Copyright 2020 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. | ||
|
||
// Creates and iframe and appends it to the body element. Make sure the caller | ||
// has a body element! | ||
function createAdIframe() { | ||
let frame = document.createElement('iframe'); | ||
document.body.appendChild(frame); | ||
return frame; | ||
} | ||
} | ||
|
||
function createAdIframeWithSrc(src) { | ||
let frame = document.createElement('iframe'); | ||
frame.src = src; | ||
document.body.appendChild(frame); | ||
return frame; | ||
} |
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
15 changes: 15 additions & 0 deletions
15
lgpl/sources/chromium/src/chrome/test/data/android/content_url_load_content_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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!doctype html> | ||
<!-- can not be in a sub-directory as TestContentProvider does not support it --> | ||
<html> | ||
<head><title>running</title></head> | ||
<body><script> | ||
try { | ||
const worker = new Worker('./worker.js'); | ||
worker.onerror = e => document.title = 'error'; | ||
worker.onmessage = e => document.title = e.data; | ||
worker.postMessage([]); | ||
} catch (e) { | ||
document.title = 'exception' | ||
} | ||
</script></body> | ||
</html> |
25 changes: 25 additions & 0 deletions
25
lgpl/sources/chromium/src/chrome/test/data/android/content_url_make_cors_to_content.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 @@ | ||
<!doctype html> | ||
<!-- can not be in a sub-directory as TestContentProvider does not support it --> | ||
<html> | ||
<head><title>running</title></head> | ||
<body><script> | ||
window.onload = function () { | ||
const params = new URL(document.location).searchParams; | ||
const api = params.get('api'); | ||
if (api == "xhr") { | ||
const xhr = new XMLHttpRequest(); | ||
xhr.open('get', params.get('url'), true); | ||
xhr.onload = e => document.title = 'load'; | ||
xhr.onerror = e => document.title = 'error'; | ||
xhr.onabort = e => document.title = 'abort'; | ||
xhr.send(); | ||
} else if (api == "fetch") { | ||
fetch(params.get('url'), { 'mode': params.get('mode') }).then( | ||
e => document.title = 'load', | ||
e => document.title = 'error'); | ||
} else { | ||
document.title = "unknown api" | ||
} | ||
}; | ||
</script></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
7 changes: 7 additions & 0 deletions
7
lgpl/sources/chromium/src/chrome/test/data/android/customtabs/cct_header.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 @@ | ||
<html> | ||
<body> | ||
<img src="google1.jpg"/> | ||
<img src="http://a.com:REPLACE_WITH_HTTP_PORT/non_google.jpg"/> | ||
<iframe src="cct_header_frame.html"></iframe> | ||
</body> | ||
</html> |
5 changes: 5 additions & 0 deletions
5
lgpl/sources/chromium/src/chrome/test/data/android/customtabs/cct_header_frame.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> | ||
<img src="google2.jpg"/> | ||
</body> | ||
</html> |
Oops, something went wrong.