Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-flexbox/flexbox_first-letter.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>flexbox | first-letter</title>
<meta name="assert" content="This test is ensures that flexbox placement does not apply to ::first-letter psuedo-content">
<link rel="author" title="Vince Falconi" href="vince.falconi@gmail.com">
<style>
div { display: flex; }
div::first-letter { order: 2 }
</style>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div>Triceratops</div>
<script>
test(function() {
let order = getComputedStyle(document.querySelector('div'), '::first-letter').order;
assert_not_equals(order, '2');
});
</script>