Welcome to mirror list, hosted at ThFree Co, Russian Federation.

missing-inner.html « carousel « fixtures « test - github.com/twbs/bootlint.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 103b2f241faffdb95ce16431afcc13d602ca8bd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Test</title>
    <!--[if lt IE 9]>
    <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
    <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]-->
    <script src="../../../node_modules/jquery/dist/jquery.min.js"></script>

    <link rel="stylesheet" href="../../../node_modules/qunitjs/qunit/qunit.css">
    <script src="../../../node_modules/qunitjs/qunit/qunit.js"></script>
    <script src="../../../dist/browser/bootlint.js"></script>
    <script src="../generic-qunit.js"></script>
</head>
<body>
    <div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
        <ol class="carousel-indicators">
            <li data-target="#carousel-example-generic" data-slide-to="0"></li>
        </ol>
        <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
            <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
            <span class="sr-only">Previous</span>
        </a>
    </div>
    <div id="qunit"></div>
    <ol id="bootlint">
        <li data-lint="`.carousel` must have exactly one `.carousel-inner` child."></li>
    </ol>
</body>
</html>