添加badssl.com目录
This commit is contained in:
16
badssl.com/common/test/basic-auth/index.html
Normal file
16
badssl.com/common/test/basic-auth/index.html
Normal file
@@ -0,0 +1,16 @@
|
||||
---
|
||||
title: basic-auth
|
||||
layout: page
|
||||
favicon: gray
|
||||
background: gray
|
||||
---
|
||||
|
||||
<div id="content">
|
||||
<h1 style="font-size: 10vw;">
|
||||
basic-auth
|
||||
</h1>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
This page is protected using <a href="https://en.wikipedia.org/wiki/Basic_access_authentication">HTTP Basic Authentication</a>.
|
||||
</div>
|
||||
20
badssl.com/common/test/canceled-image/index.html
Normal file
20
badssl.com/common/test/canceled-image/index.html
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
title: canceled-image
|
||||
layout: page
|
||||
favicon: gray
|
||||
background: gray
|
||||
---
|
||||
|
||||
<div id="content">
|
||||
<h1 style="font-size: 5vw;">
|
||||
canceled-image
|
||||
</h1>
|
||||
</div>
|
||||
|
||||
|
||||
<script>
|
||||
var xhr= new XMLHttpRequest();
|
||||
xhr.open("GET", "https://google.com/image.jpg");
|
||||
xhr.send();
|
||||
xhr.abort();
|
||||
</script
|
||||
3
badssl.com/common/test/cors/cors.json
Normal file
3
badssl.com/common/test/cors/cors.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"value": "success"
|
||||
}
|
||||
BIN
badssl.com/common/test/dashboard/small-image.png
Normal file
BIN
badssl.com/common/test/dashboard/small-image.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 80 B |
1
badssl.com/common/test/dashboard/small-text-file.txt
Normal file
1
badssl.com/common/test/dashboard/small-text-file.txt
Normal file
@@ -0,0 +1 @@
|
||||
The rain in Spain stays mainly in the plain.
|
||||
1
badssl.com/common/test/imported.js
Normal file
1
badssl.com/common/test/imported.js
Normal file
@@ -0,0 +1 @@
|
||||
message = "loaded";
|
||||
32
badssl.com/common/test/theme-color/index.html
Normal file
32
badssl.com/common/test/theme-color/index.html
Normal file
@@ -0,0 +1,32 @@
|
||||
---
|
||||
title: theme-color
|
||||
layout: page
|
||||
favicon: gray
|
||||
background: gray
|
||||
---
|
||||
|
||||
<div id="content">
|
||||
<h1 style="font-size: 9vw;">
|
||||
<input id="color" type="color" name="color" value="#00e000">
|
||||
</h1>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
This page allows setting a dynamic theme color.<br>
|
||||
The color defaults to bright green, and will update with the page background.
|
||||
</div>
|
||||
|
||||
<script>
|
||||
var themeColor = document.createElement("meta");
|
||||
themeColor.name = "theme-color";
|
||||
document.head.appendChild(themeColor);
|
||||
|
||||
var colorElem = document.querySelector("#color");
|
||||
var updateColor = function() {
|
||||
themeColor.content = colorElem.value;
|
||||
document.body.style.backgroundColor = colorElem.value;
|
||||
}
|
||||
|
||||
updateColor();
|
||||
colorElem.addEventListener("change", updateColor);
|
||||
</script>
|
||||
Reference in New Issue
Block a user