Rubber-stamped by Brady Eidson.
[webbrowser.git] / LayoutTests / fast / css / begin-end-contain-selector-empty-value.html
blobafa62d153214ff7219b970256ea0a1c702535f9f
1 <!DOCTYPE html>
2 <style type="text/css">
3 div[foo1^=""] { background-color: red; }
4 div[foo2$=""] { background-color: red; }
5 div[foo3*=""] { background-color: red; }
6 </style>
7 <div foo1="">[^=] attribute selector looking for empty string in empty attribute (the text should not have red background)</div>
8 <div foo2="">[$=] attribute selector looking for empty string in empty attribute (the text should not have red background)</div>
9 <div foo3="">[*=] attribute selector looking for empty string in empty attribute (the text should not have red background)</div>