testing/web-platform/tests/css/css-pseudo/placeholder-excluded-properties.html
author Lando <lando@lando.test>
Fri, 11 Jul 2025 04:32:24 +0000 (2 hours ago)
changeset 796014 f14d1c1492bc6791542a001365abbca4bd9b28db
parent 555809 ca67e313abe07c3ed8bffca91c0f669e0278879a
permissions -rw-r--r--
Merge autoland to mozilla-central
<!DOCTYPE html>
<title>::placeholder should not support 'writing-mode', 'direction', and 'text-orientation'</title>
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#placeholder-pseudo">
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-line-styling">
<link rel="match" href="reference/placeholder-excluded-properties-ref.html">
<style>
.horizontal::placeholder {
  writing-mode: vertical-rl;
  direction: rtl;
}

.vertical {
  writing-mode: vertical-rl;
}
.vertical::placeholder {
  text-orientation: upright;
}
</style>
<body>
<input class="horizontal" placeholder="placeholder">
<input class="vertical" placeholder="placeholder">
</body>