Bug 27007 - Не корректно разбирается <script type="text/javascript">
Summary: Не корректно разбирается <script type="text/javascript">
Status: NEW
Alias: None
Product: Sisyphus
Classification: Development
Component: alterator-fbi (show other bugs)
Version: unstable
Hardware: all Linux
: P3 normal
Assignee: Mikhail Efremov
QA Contact: qa-sisyphus
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-02-29 16:54 MSK by Andriy Stepanov (stanv)
Modified: 2012-02-29 16:54 MSK (History)
4 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andriy Stepanov (stanv) 2012-02-29 16:54:56 MSK
Если попробовать вставить в
ui/<некий модуль>/index.html

код:

 <script type="text/javascript">
            var count = 20
            var redirect= "http://" + self.location.hostname + ":8080/update/up.html"

            function countDown(){  
              //  if (0 >= count) {  
                if (count <= 0) {  
                    window.location = redirect;  
                }else{  
                    count=count-1;  
                    document.getElementById("timer").innerHTML = "This page will redirect in "+count+" seconds"  
                    document.getElementById("gobtn").style.display ="None"  
                        setTimeout("countDown()", 1000)  
                }
            }
        </script>

тогда index.html не может роспарсить парсер alterator-fbi:

XML Parser: Parse error at line 11:not well-formed (invalid token)


У себя проблему я решил, что 
if (count <= 0) { 
заменил на:
if (0 >= count) {


Пробовал использовать вариант:
<script src="url"/>
но он не работает.