What is the difference between "data-role" and "role" in the following example ?
http://api.jquerymobile.com/page/
-------------------
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<div data-role="page" id="page1">
<h1>Page header (optional): Example page</h1>
<div role="main" class="ui-content">
<p>Page content goes here.</p>
<h1>Page footer (optional)</h1>