upload webkit/tizen 2.0_beta source.
[framework/web/webkit-efl.git] / LayoutTests / fast / media / mq-js-media-except-01.html
1 <html>
2 <head>
3 <title>CSS3 media query test: deleteMedium throwing exception.</title>
4 <link rel="help" href="http://www.w3.org/TR/css3-mediaqueries/" />
5
6 <style type="text/css">
7 @media all and (color) {
8 p#result { color: green;}
9 }
10 </style>
11
12 <script language="javascript">
13 function test() {
14     try {
15        document.styleSheets[0].cssRules[0].media.deleteMedium("all and (");
16     }
17     catch(e) {
18         document.getElementById("result").innerHTML = "Success."
19         document.getElementById("details").innerHTML = "Following exception was caught: " + e;
20     }
21 }
22 </script>
23
24
25 </head>
26 <body onload="test()">
27 <p>The text below should read "Success." </p>
28 <p id="result">Failure: test not run.</p>
29 <p id="details"></p>
30 </body>
31 </html>