[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / ManualTests / showModalDialog-returnValue.html
1 This test makes sure we don't crash when storing the return value from showModalDialog.  Popup blocking needs to be disabled for this test to run.<br>
2 <script>
3 if (showModalDialog("data:text/html,<script>returnValue={value:'PASS'}; close()</"+"script>").value == "PASS")
4     document.write("<span style='color:green'>Test passed.<br>");
5 else
6     document.write("<span style='color:red'>Test failed due to incorrect result.<br>");
7 value = showModalDialog("data:text/html,<script>close()</"+"script>");
8 if (!value)
9     document.write("<span style='color:green'>Test passed.<br>");
10 else
11     document.write("<span style='color:red'>Test failed due to incorrect result.<br>");
12
13 </script>