Skip to content

Commit

Permalink
Adding sources of Opera 58.0.3135.87
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasz Bendig committed Mar 6, 2019
1 parent 1ee5113 commit 0101329
Show file tree
Hide file tree
Showing 19,314 changed files with 3,425,030 additions and 14,795 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
11 changes: 11 additions & 0 deletions lgpl/sources/chromium/src/chrome/test/data/ad_tagging/ad_script.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// 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.

'use strict';

function createAdFrame(url, name) {
Expand All @@ -7,6 +11,10 @@ function createAdFrame(url, name) {
document.body.appendChild(frame);
}

function windowOpenFromAdScript() {
window.open();
}

async function createDocWrittenAdFrame(name, base_url) {
let doc_body = await fetch('frame_factory.html');
let doc_text = await doc_body.text();
Expand All @@ -16,6 +24,9 @@ async function createDocWrittenAdFrame(name, base_url) {
document.body.appendChild(frame);

frame.contentDocument.open();
frame.onload = function() {
window.domAutomationController.send(true);
}
frame.contentDocument.write(doc_text);
frame.contentDocument.close();
}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
// 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.

'use strict';

function createFrame(url, name) {
let frame = document.createElement('iframe');
frame.name = name;
frame.id = name;
frame.src = url;
document.body.appendChild(frame);
}

function windowOpenFromNonAdScript() {
window.open();
}

async function createDocWrittenFrame(name, base_url) {
let doc_body = await fetch('frame_factory.html');
let doc_text = await doc_body.text();
Expand All @@ -16,6 +25,9 @@ async function createDocWrittenFrame(name, base_url) {
document.body.appendChild(frame);

frame.contentDocument.open();
frame.onload = function() {
window.domAutomationController.send(true);
}
frame.contentDocument.write(doc_text);
frame.contentDocument.close();
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<html>
<script src="ad_script.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<img src="pixel.png"></img>
<video src="bear-320x240-video-only.webm" preload="auto"></video>
<iframe src="test.pdf"></iframe>
</html>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/*
* Copyright 2014 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.
*/

/* Fake style sheet */
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

�>

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "TestApp2",
"package_name": "test.app2",
"activity": "test.app2.activity",
"oem": false,
"app_path": "test_app2"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<!-- Autofill generic test form. -->
<html>
<head>
<title>Autofill Test Form</title>
</head>
<body>
<h3>Autofill Test Form</h3>
<form name="testformone" method="post" id="testformone">
<p>
<label for="firstname">First Name:</label> <input type="text" id="NAME_FIRST"><br>
<label for="lastname">Last Name:</label> <input type="text" id="NAME_LAST"><br>
<label for="address">Address:</label> <input type="text" id="ADDRESS_HOME_LINE1"><br>
<label for="city">City:</label> <input type="text" id="ADDRESS_HOME_CITY" ><br>
<label for="state">State:</label> <input type="text" id="ADDRESS_HOME_STATE" ><br>
<label for="zip">Zip:</label> <input type="text" id="ADDRESS_HOME_ZIP" ><br>
<label for="country">Country:</label> <input type="text" id="ADDRESS_HOME_COUNTRY" ><br>
<label for="email">Email:</label> <input type="text" id="EMAIL_ADDRESS"><br>
<label for="phone">Phone:</label> <input type="text" id="PHONE_HOME_WHOLE_NUMBER"><br>
<input type="submit" value="send"> <input type="reset">
</p>
</form>
<form name="testformtwo" method="post" id="testformtwo">
<p>
<label for="firstname">First Name:</label> <input type="text" id="NAME_FIRST"><br>
<label for="lastname">Last Name:</label> <input type="text" id="NAME_LAST"><br>
<label for="address">Address:</label> <input type="text" id="ADDRESS_HOME_LINE1"><br>
<label for="city">City:</label> <input type="text" id="ADDRESS_HOME_CITY" ><br>
<label for="state">State:</label> <input type="text" id="ADDRESS_HOME_STATE" ><br>
<label for="zip">Zip:</label> <input type="text" id="ADDRESS_HOME_ZIP" ><br>
<label for="country">Country:</label> <input type="text" id="ADDRESS_HOME_COUNTRY" ><br>
<input type="submit" value="send"> <input type="reset">
</p>
</form>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
61e535c75e11548909b662d8cea3ea450121ea74
cfc8a5a43fec7aab7bd3466bcc33548813d38906
Loading

0 comments on commit 0101329

Please sign in to comment.