blob: 8c0aec978280c1b2075f63d9617b0e174469b9d9 [file] [log] [blame]
<!DOCTYPE html>
<html $i18n{chromeRefresh2023Attribute}>
<head>
<meta charset="utf-8">
<title>cr-checkbox demo</title>
<link rel="stylesheet" href="demo.css">
</head>
<body>
<dom-bind>
<template>
<h1>cr-checkbox</h1>
<div class="demos">
<cr-checkbox checked="{{myValue_}}">Checkbox</cr-checkbox>
<div>Above checkbox is checked? [[myValue_]]</div>
<cr-checkbox checked>Checkbox</cr-checkbox>
<cr-checkbox disabled>Disabled checkbox</cr-checkbox>
<cr-checkbox checked disabled>Disabled checked checkbox</cr-checkbox>
</div>
</template>
</dom-bind>
<script src="//resources/cr_elements/cr_checkbox/cr_checkbox.js"
type="module"></script>
</body>
</html>