This file contains hidden or 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
<!doctype html> | |
<meta charset="utf-8"> | |
<title>Out-of-order stylesheet loads for the same element happen correctly, even with imports (issue #15101)</title> | |
<script src="/resources/testharness.js"></script> | |
<script src="/resources/testharnessreport.js"></script> | |
<script> | |
async_test(function(t) { | |
var link = document.createElement("link"); | |
link.rel = "stylesheet"; | |
link.href = "resources/imports-background-red.css?pipe=trickle(d3)"; |
This file contains hidden or 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
<!doctype html> | |
<meta charset="utf-8"> | |
<title>Out-of-order stylesheet loads for the same element happen correctly, even with imports (issue #15101)</title> | |
<script src="/resources/testharness.js"></script> | |
<script src="/resources/testharnessreport.js"></script> | |
<script> | |
async_test(function(t) { | |
var link = document.createElement("link"); | |
link.rel = "stylesheet"; | |
link.href = "resources/imports-background-red.css?pipe=trickle(d3)"; |
This file contains hidden or 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
<!doctype html> | |
<meta charset="utf-8"> | |
<title>Out-of-order stylesheet loads for the same element happen correctly (issue #15101)</title> | |
<script src="/resources/testharness.js"></script> | |
<script src="/resources/testharnessreport.js"></script> | |
<body></body> | |
<script> | |
async_test(function(t) { | |
var link = document.createElement("link"); | |
link.rel = "stylesheet"; |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>The fabulous always-green webpage</title> | |
</head> | |
<body> | |
<script> | |
var link = document.createElement("link"); | |
link.rel = "stylesheet"; |
This file contains hidden or 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
<!doctype html> | |
<meta charset="utf-8"> | |
<title>Multiple in-flight stylesheet loads should not panic. (issue #15101)</title> | |
<script src="/resources/testharness.js"></script> | |
<script src="/resources/testharnessreport.js"></script> | |
<script> | |
async_test(function(t) { | |
var link = document.createElement("link"); | |
link.rel = "stylesheet"; | |
link.onload = t.step_func(function() { |
This file contains hidden or 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
import random | |
import math | |
import sys | |
CHECKPOINT_RADIUS = 600 | |
POD_RADIUS = 400 | |
MAX_ANGLE_DIFF = 0.31415 | |
FRICTION = 0.85 | |
MAX_THRUST = 100 |