Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / selection / select-all-user-select-none.html
blobc1281b13378fbbfaa304a130498bc596717f1094
1 <html>
2 <head>
3 <style>
4 body {
5 -webkit-user-select: none;
7 </style>
8 <script>
9 function test() {
10 if (window.testRunner)
11 testRunner.dumpAsText();
12 document.execCommand('SelectAll');
13 if (window.getSelection().toString() == "")
14 document.body.innerHTML = "Test Passed";
16 </script>
17 </head>
18 <body onload="test()">
19 Test Failed (this should not be selected)
20 </body>
21 </html>