summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-mediaqueries/scoped-mq-update-helper.html
blob: f374a8f134020a17ffad7fc5c40793132c7e2330 (plain)
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<body>
<style>
body { width: 100%; height: 100%; background-color: red; }
</style>
<style scoped>
@media (max-width: 200px) {
  body { background-color: green; }
}
</style>