Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / selection / user-select-all-parsing.html
blobfb56e774de7c515e5c22f8ed88cab341e100de1f
1 <!DOCTYPE html>
2 <head>
3 <style>
4 .userSelectAll {-webkit-user-select: all;}
5 </style>
6 <script src="../../resources/js-test.js"></script>
7 </head>
8 <body contentEditable="true">
9 <div class="userSelectAll" id ="allArea">
10 this is text of -webkit-user-select all
11 </div>
12 <div id="console"></div>
14 <script>
15 description("Test for Parsing new value all for -webkit-user-select");
16 var userSelect = document.defaultView.getComputedStyle(document.getElementById("allArea"),null);
17 shouldBeEqualToString('userSelect.getPropertyValue("-webkit-user-select")', 'all');
18 </script>
19 </body>
20 </html>