mirror of
https://github.com/swc-project/swc.git
synced 2025-01-01 01:56:06 +03:00
65 lines
1001 B
HTML
65 lines
1001 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
<style type="text/css">
|
|
a {
|
|
color: red;
|
|
}
|
|
</style>
|
|
<style type="TEXT/CSS">
|
|
a {
|
|
color: red;
|
|
}
|
|
</style>
|
|
<style>
|
|
a {
|
|
color: red;
|
|
}
|
|
</style>
|
|
<style type="not/css">
|
|
K e E p
|
|
</style>
|
|
<svg>
|
|
<style type="text/css">
|
|
a {
|
|
color: red;
|
|
}
|
|
</style>
|
|
</svg>
|
|
<style><!-- p { color: red } --></style>
|
|
<style>
|
|
a {
|
|
color: red;
|
|
}
|
|
|
|
@media all {
|
|
p { color: red }
|
|
}
|
|
</style>
|
|
<STYLE><!--.test { color: red }--></STYLE>
|
|
<svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
|
|
<style>
|
|
circle {
|
|
fill: gold;
|
|
stroke: maroon;
|
|
stroke-width: 2px;
|
|
}
|
|
</style>
|
|
|
|
<circle cx="5" cy="5" r="4" />
|
|
</svg>
|
|
<math>
|
|
<style>
|
|
/* This is not style */
|
|
|
|
.class {
|
|
color: red
|
|
}
|
|
</style>
|
|
</math>
|
|
<style blocking="render a">a { color: red }</style>
|
|
</body>
|
|
</html> |