blob: 4a9dc79afd541916b816455bd79a7785a02fb247 [file] [log] [blame]
<head>
<title>Testing the View Mode Media Feature</title>
<style type="text/css">
div {
background-color: red;
}
@media (-webkit-view-mode: minimized) {
body {
background-color: blue;
}
}
@media (-webkit-view-mode) {
div {
background-color: green;
}
}
</style>
<script>
if (window.layoutTestController)
layoutTestController.setViewModeMediaFeature("minimized");
</script>
</head>
<body>
<div style="width: 200; height: 200;"\>
</body>