input-security-non-sensitive-elements.html (609B)
1 <!DOCTYPE html> 2 <title>Test that input-security: auto does not obscure text in elements that do not accept sensitive text input</title> 3 <link rel="help" href="https://drafts.csswg.org/css-ui-4/#input-security"> 4 <link rel="author" title="Apple Inc"> 5 <link rel="match" href="input-security-non-sensitive-elements-ref.html"> 6 <style> 7 * { input-security: auto; } 8 </style> 9 <input type="email" value="webkit@webkit.org"> 10 <input type="number" value="2021"> 11 <input type="search" value="test"> 12 <input type="tel" value="555-5555"> 13 <input type="text" value="test"> 14 <input type="url" value="webkit.org"> 15 <div>Test</div>