24 lines
463 B
HTML
24 lines
463 B
HTML
|
<!doctype html>
|
|||
|
|
|||
|
<html lang="en">
|
|||
|
|
|||
|
<head>
|
|||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|||
|
<title>Attempt to import CSS via data URL asset</title>
|
|||
|
<style>
|
|||
|
|
|||
|
body {
|
|||
|
background-color: white;
|
|||
|
color: black;
|
|||
|
}
|
|||
|
|
|||
|
</style>
|
|||
|
<link href="data:text/css;base64,QGltcG9ydCAic3R5bGUuY3NzIjsK" rel="stylesheet" type="text/css" />
|
|||
|
</head>
|
|||
|
|
|||
|
<body>
|
|||
|
<p>If you see pink background with white foreground then we’re in trouble</p>
|
|||
|
</body>
|
|||
|
|
|||
|
</html>
|