Skip to main content

Search and Top Navigation

#8728 closed bug (notabug)

Opened October 24, 2012 05:31PM UTC

Closed October 24, 2012 06:34PM UTC

(Urgent) Demo Source Code missing Brackets

Reported by: redpoptarts Owned by:
Priority: minor Milestone: 1.10.0
Component: [meta] ui.a11y Version: 1.9.0
Keywords: Cc:
Blocked by: Blocking:
Description

Many closing HTML brackets '>' are missing within the 'view source' boxes on the jQuery demo page on the website.

For example, on the page http://jqueryui.com/button/#checkbox, brackets are missing from the 'view source' box. Lines which are missing the '>' bracket are denoted by '**' below:

<!doctype html>
 
**<html lang="en"
<head>
    <meta charset="utf-8" />
    <title>jQuery UI Button - Checkboxes</title>
    <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.0/themes/base/jquery-ui.css" />
**    <script src="http://code.jquery.com/jquery-1.8.2.js"</script>
**    <script src="http://code.jquery.com/ui/1.9.0/jquery-ui.js"</script>
    <link rel="stylesheet" href="/resources/demos/style.css" />
    <script>
    $(function() {
        $( "#check" ).button();
        $( "#format" ).buttonset();
    });
    </script>
    <style>
    #format { margin-top: 2em; }
    </style>
</head>
<body>
 
**<input type="checkbox" id="check" /><label for="check"Toggle</label>
 
**<div id="format"
**    <input type="checkbox" id="check1" /><label for="check1"B</label>
**    <input type="checkbox" id="check2" /><label for="check2"I</label>
**    <input type="checkbox" id="check3" /><label for="check3"U</label>
</div>
 
 
</body>
</html>

This problem affects many other view source boxes, and may be due to a recent break in common element which generates the demo scripts.

Attachments (0)
Change History (1)

Changed October 24, 2012 06:34PM UTC by scottgonzalez comment:1

resolution: → notabug
status: newclosed