blob: 9964140460311e2d39d1332b8edcf9788d2ab96a [file] [log] [blame]
<!--
Copyright 2022 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<!doctype html>
<style>
#article1 { -webkit-flow-into: flow1; }
#region1 { -webkit-flow-from: flow1; position: absolute; top: 10px; width: 350px; height: 25px;}
#p1 { color: #ff0000; }
@-webkit-region #region1 {
#p1 { color: #008000; }
}
</style>
<div id="article1">
<p id="p1">P color styled in region: #008000.</p>
</div>
<div id="region1" class="regionBox"></div>