1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
<!DOCTYPE html>
<meta charset='UTF-8'>
<title>core-js-compat</title>
<style>
th,td {
padding: 0.25em;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 0.75em;
}
th {
background-color: white;
color: black;
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 2;
}
td,a {
color: white;
text-decoration: none;
}
.true {
background-color: #00882c;
}
.false {
background-color: #e11;
}
.nodata {
background-color: grey;
}
.data {
text-align: center;
}
</style>
<table id='table'></table>
<script src='./compat-data.js'></script>
<script src='./tests.js'></script>
<script src='./browsers-runner.js'></script>
|