31c524cdca
BUG= http://dartbug.com/21583 R=sigmund@google.com Review URL: https://codereview.chromium.org//723393003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42114 260f80e4-7a28-3924-810f-c04153c831b5
19 lines
614 B
HTML
19 lines
614 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<!--polymer-test: this comment is needed for test_suite.dart-->
|
|
<head>
|
|
<title>property to attribute reflection with bind</title>
|
|
<link rel="import" href="packages/polymer/polymer.html">
|
|
<script src="/root_dart/tools/testing/dart/test_controller.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<x-foo foo="mee" bar="too" count=3></x-foo>
|
|
|
|
<polymer-element name="x-foo" attributes="foo bar count">
|
|
<template>{{ fooBar }}:{{ fooBarCounted }}</template>
|
|
<script type="application/dart" src="computed_properties_test.dart"></script>
|
|
</polymer-element>
|
|
</body>
|
|
</html>
|