path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
tmp/update-extraction-7c31d87a/geolocation/css/geolocation-common-map.css | jeff-purtle/purtle_drupal8 | .geolocation-common-map-container {
height: 300px;
width: 100%;
display: none;
}
|
global_resources/doc/freetoolbox/fr/html/index.html | maternite/freemedforms | <html>
<body>
<p align=center>The documentation is only available online. Please refer to:</p>
<p align=center><a href="http://www.freemedforms.com/">freemedforms.com</a></p>
</body>
</html>
|
paperjs/examples/Paperjs.org/MetaBalls.html | alcat2008/web-demo | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Meta Balls</title>
<link rel="stylesheet" href="../css/style.css">
<script type="text/javascript" src="../../dist/paper-full.js"></script>
<script type="text/paperscript" canvas="canvas">
// Ported from original Metaball script by SATO Hiroyuki
// http://park12.wakwak.com/~shp/lc/et/en_aics_script.html
project.currentStyle = {
fillColor: 'black'
};
var ballPositions = [[255, 129], [610, 73], [486, 363],
[117, 459], [484, 726], [843, 306], [789, 615], [1049, 82],
[1292, 428], [1117, 733], [1352, 86], [92, 798]];
var handle_len_rate = 2.4;
var circlePaths = [];
var radius = 50;
for (var i = 0, l = ballPositions.length; i < l; i++) {
var circlePath = new Path.Circle({
center: ballPositions[i],
radius: 50
});
circlePaths.push(circlePath);
}
var largeCircle = new Path.Circle({
center: [676, 433],
radius: 100
});
circlePaths.push(largeCircle);
function onMouseMove(event) {
largeCircle.position = event.point;
generateConnections(circlePaths);
}
var connections = new Group();
function generateConnections(paths) {
// Remove the last connection paths:
connections.removeChildren();
for (var i = 0, l = paths.length; i < l; i++) {
for (var j = i - 1; j >= 0; j--) {
var path = metaball(paths[i], paths[j], 0.5, handle_len_rate, 300);
if (path) {
connections.appendTop(path);
path.removeOnMove();
}
}
}
}
generateConnections(circlePaths);
// ---------------------------------------------
function metaball(ball1, ball2, v, handle_len_rate, maxDistance) {
var center1 = ball1.position;
var center2 = ball2.position;
var radius1 = ball1.bounds.width / 2;
var radius2 = ball2.bounds.width / 2;
var pi2 = Math.PI / 2;
var d = center1.getDistance(center2);
var u1, u2;
if (radius1 == 0 || radius2 == 0)
return;
if (d > maxDistance || d <= Math.abs(radius1 - radius2)) {
return;
} else if (d < radius1 + radius2) { // case circles are overlapping
u1 = Math.acos((radius1 * radius1 + d * d - radius2 * radius2) /
(2 * radius1 * d));
u2 = Math.acos((radius2 * radius2 + d * d - radius1 * radius1) /
(2 * radius2 * d));
} else {
u1 = 0;
u2 = 0;
}
var angle1 = (center2 - center1).getAngleInRadians();
var angle2 = Math.acos((radius1 - radius2) / d);
var angle1a = angle1 + u1 + (angle2 - u1) * v;
var angle1b = angle1 - u1 - (angle2 - u1) * v;
var angle2a = angle1 + Math.PI - u2 - (Math.PI - u2 - angle2) * v;
var angle2b = angle1 - Math.PI + u2 + (Math.PI - u2 - angle2) * v;
var p1a = center1 + getVector(angle1a, radius1);
var p1b = center1 + getVector(angle1b, radius1);
var p2a = center2 + getVector(angle2a, radius2);
var p2b = center2 + getVector(angle2b, radius2);
// define handle length by the distance between
// both ends of the curve to draw
var totalRadius = (radius1 + radius2);
var d2 = Math.min(v * handle_len_rate, (p1a - p2a).length / totalRadius);
// case circles are overlapping:
d2 *= Math.min(1, d * 2 / (radius1 + radius2));
radius1 *= d2;
radius2 *= d2;
var path = new Path({
segments: [p1a, p2a, p2b, p1b],
style: ball1.style,
closed: true
});
var segments = path.segments;
segments[0].handleOut = getVector(angle1a - pi2, radius1);
segments[1].handleIn = getVector(angle2a + pi2, radius2);
segments[2].handleOut = getVector(angle2b - pi2, radius2);
segments[3].handleIn = getVector(angle1b + pi2, radius1);
return path;
}
// ------------------------------------------------
function getVector(radians, length) {
return new Point({
// Convert radians to degrees:
angle: radians * 180 / Math.PI,
length: length
});
}
</script>
</head>
<body>
<canvas id="canvas" resize></canvas>
</body>
</html>
|
WebContent/resources/dojo/demos/widget/Mail/Work.html | sdtabilit/Scada-LTS | <table width=100% style="border: 1px;">
<tr class="header"><td>Sender</td><td>Subject</td><td>Date</td></tr>
<tr><td>Adam Arlen</td><td>meeting notes</td><td>2005-12-19</td></tr>
<tr><td>Bob Baxter</td><td>schedule</td><td>2005-12-18</td></tr>
</table> |
tests/wpt/web-platform-tests/streams/readable-byte-streams/construct-byob-request.dedicatedworker.html | anthgur/servo | <!DOCTYPE html>
<meta charset="utf-8">
<title>construct-byob-request.js dedicated worker wrapper file</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
'use strict';
fetch_tests_from_worker(new Worker('construct-byob-request.js'));
</script>
|
third_party/WebKit/LayoutTests/imported/csswg-test/css-writing-modes-3/block-override-isolate-001-expected.html | axinging/chromium-crosswalk | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>direction: div override rtl</title>
<link rel="author" title="Richard Ishida" href='mailto:ishida@w3.org'/>
<style type="text/css">
.test { direction: rtl; unicode-bidi: isolate-override; }
/* the following styles are not part of the test */
.test, .ref { font-size: 150%; border: 1px solid orange; margin: 10px; width: 10em; padding: 5px; clear: both; }
input { margin: 5px; }
@font-face {
font-family: 'ezra_silregular';
src: url('support/sileot-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
.test, .ref { font-family: ezra_silregular, serif; }
</style>
</head>
<body>
<p class="instructions" dir="ltr" style="display:none">Test passes if the two boxes are identical.</p>
<!-- Notes:
Key to entities used below:
א ... ו - The first six Hebrew letters (strongly RTL).
‭ - The LRO (left-to-right-override) formatting character.
‬ - The PDF (pop directional formatting) formatting character; closes LRO.
-->
<div class="ref" dir="rtl">‭< fe < דג < ba <‬</div>
<div class="ref" dir="rtl">‭< fe < דג < ba <‬</div>
</body></html> |
ftc_app-master/doc/javadoc/com/qualcomm/robotcore/hardware/ServoController.html | BlueDevilsCode/5968 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc -->
<title>ServoController</title>
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ServoController";
}
}
catch(err) {
}
//-->
var methods = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/qualcomm/robotcore/hardware/Servo.Direction.html" title="enum in com.qualcomm.robotcore.hardware"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../com/qualcomm/robotcore/hardware/ServoController.PwmStatus.html" title="enum in com.qualcomm.robotcore.hardware"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/qualcomm/robotcore/hardware/ServoController.html" target="_top">Frames</a></li>
<li><a href="ServoController.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li><a href="#nested.class.summary">Nested</a> | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">com.qualcomm.robotcore.hardware</div>
<h2 title="Interface ServoController" class="title">Interface ServoController</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Superinterfaces:</dt>
<dd><a href="../../../../com/qualcomm/robotcore/hardware/HardwareDevice.html" title="interface in com.qualcomm.robotcore.hardware">HardwareDevice</a></dd>
</dl>
<dl>
<dt>All Known Subinterfaces:</dt>
<dd><a href="../../../../com/qualcomm/robotcore/hardware/ServoControllerEx.html" title="interface in com.qualcomm.robotcore.hardware">ServoControllerEx</a></dd>
</dl>
<hr>
<br>
<pre>public interface <span class="typeNameLabel">ServoController</span>
extends <a href="../../../../com/qualcomm/robotcore/hardware/HardwareDevice.html" title="interface in com.qualcomm.robotcore.hardware">HardwareDevice</a></pre>
<div class="block">Interface for working with Servo Controllers
<p>
Different servo controllers will implement this interface.</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested.class.summary">
<!-- -->
</a>
<h3>Nested Class Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
<caption><span>Nested Classes</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Interface and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/qualcomm/robotcore/hardware/ServoController.PwmStatus.html" title="enum in com.qualcomm.robotcore.hardware">ServoController.PwmStatus</a></span></code>
<div class="block">PWM Status - is pwm enabled?</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="nested.classes.inherited.from.class.com.qualcomm.robotcore.hardware.HardwareDevice">
<!-- -->
</a>
<h3>Nested classes/interfaces inherited from interface com.qualcomm.robotcore.hardware.<a href="../../../../com/qualcomm/robotcore/hardware/HardwareDevice.html" title="interface in com.qualcomm.robotcore.hardware">HardwareDevice</a></h3>
<code><a href="../../../../com/qualcomm/robotcore/hardware/HardwareDevice.Manufacturer.html" title="enum in com.qualcomm.robotcore.hardware">HardwareDevice.Manufacturer</a></code></li>
</ul>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code><a href="../../../../com/qualcomm/robotcore/hardware/ServoController.PwmStatus.html" title="enum in com.qualcomm.robotcore.hardware">ServoController.PwmStatus</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/qualcomm/robotcore/hardware/ServoController.html#getPwmStatus--">getPwmStatus</a></span>()</code>
<div class="block">Returns the enablement status of the collective set of servos connected to this controller</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/qualcomm/robotcore/hardware/ServoController.html#getServoPosition-int-">getServoPosition</a></span>(int servo)</code>
<div class="block">Get the position of a servo at a given channel</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/qualcomm/robotcore/hardware/ServoController.html#pwmDisable--">pwmDisable</a></span>()</code>
<div class="block">Disables all of the servos connected to this controller</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/qualcomm/robotcore/hardware/ServoController.html#pwmEnable--">pwmEnable</a></span>()</code>
<div class="block">Enables all of the servos connected to this controller</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/qualcomm/robotcore/hardware/ServoController.html#setServoPosition-int-double-">setServoPosition</a></span>(int servo,
double position)</code>
<div class="block">Set the position of a servo at the given channel</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.com.qualcomm.robotcore.hardware.HardwareDevice">
<!-- -->
</a>
<h3>Methods inherited from interface com.qualcomm.robotcore.hardware.<a href="../../../../com/qualcomm/robotcore/hardware/HardwareDevice.html" title="interface in com.qualcomm.robotcore.hardware">HardwareDevice</a></h3>
<code><a href="../../../../com/qualcomm/robotcore/hardware/HardwareDevice.html#close--">close</a>, <a href="../../../../com/qualcomm/robotcore/hardware/HardwareDevice.html#getConnectionInfo--">getConnectionInfo</a>, <a href="../../../../com/qualcomm/robotcore/hardware/HardwareDevice.html#getDeviceName--">getDeviceName</a>, <a href="../../../../com/qualcomm/robotcore/hardware/HardwareDevice.html#getManufacturer--">getManufacturer</a>, <a href="../../../../com/qualcomm/robotcore/hardware/HardwareDevice.html#getVersion--">getVersion</a>, <a href="../../../../com/qualcomm/robotcore/hardware/HardwareDevice.html#resetDeviceConfigurationForOpMode--">resetDeviceConfigurationForOpMode</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="pwmEnable--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>pwmEnable</h4>
<pre>void pwmEnable()</pre>
<div class="block">Enables all of the servos connected to this controller</div>
</li>
</ul>
<a name="pwmDisable--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>pwmDisable</h4>
<pre>void pwmDisable()</pre>
<div class="block">Disables all of the servos connected to this controller</div>
</li>
</ul>
<a name="getPwmStatus--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPwmStatus</h4>
<pre><a href="../../../../com/qualcomm/robotcore/hardware/ServoController.PwmStatus.html" title="enum in com.qualcomm.robotcore.hardware">ServoController.PwmStatus</a> getPwmStatus()</pre>
<div class="block">Returns the enablement status of the collective set of servos connected to this controller</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the enablement status of the collective set of servos connected to this controller</dd>
</dl>
</li>
</ul>
<a name="setServoPosition-int-double-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setServoPosition</h4>
<pre>void setServoPosition(int servo,
double position)</pre>
<div class="block">Set the position of a servo at the given channel</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>servo</code> - channel of servo</dd>
<dd><code>position</code> - from 0.0 to 1.0</dd>
</dl>
</li>
</ul>
<a name="getServoPosition-int-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getServoPosition</h4>
<pre>double getServoPosition(int servo)</pre>
<div class="block">Get the position of a servo at a given channel</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>servo</code> - channel of servo</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>position, scaled from 0.0 to 1.0</dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/qualcomm/robotcore/hardware/Servo.Direction.html" title="enum in com.qualcomm.robotcore.hardware"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../com/qualcomm/robotcore/hardware/ServoController.PwmStatus.html" title="enum in com.qualcomm.robotcore.hardware"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/qualcomm/robotcore/hardware/ServoController.html" target="_top">Frames</a></li>
<li><a href="ServoController.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li><a href="#nested.class.summary">Nested</a> | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
vendor/bundle/ruby/2.0.0/gems/mechanize-2.7.3/test/htdocs/form_order_test.html | BigAppleSoftball/ratingsManager | <html>
<head><title>Page Title</title></head>
<body>
<form name="post_form1">
<input type="radio" name="1" value="RADIO" checked>
<input type="email" name="3" value="nobody@example">
<input type="text" name="2" value="TEXT">
<input type="month" name="3" value="2011-10">
</form>
</body>
</html>
|
web/themes/kwlug_theme/layout/site-builder/css/onecol/onecol-suffix-3.css | pnijjar/kwlug-drupal8-migration | .onecol-suffix-3 .l-r { padding-right: 25.42373%; }
|
third_party/blink/web_tests/paint/invalidation/quotes-expected.html | scheib/chromium | <!DOCTYPE html>
<style>
.q-changed {
quotes: '{' '}';
}
.q-unchanged {
quotes: '<' '>';
}
</style>
<div><q id="q1" class="q-unchanged">quote 1</q></div>
<div><q id="q2" class="q-changed">quote 2</q></div>
|
resource-server-content/src/main/webapp/rs/ckeditor/4.3.2/_source/skins/moono/menu.css | Jasig/resource-server | /*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
/*
menu.css (part of editor.css)
===============================
This file styles menus used in the editor UI. These menus are the list of
options available inside some "floating panels", like menu buttons of the
toolbar or the context menu.
Note that the menu itself doesn't include the floating element that holds it.
That element is styles in the panel.css file.
The following is a visual representation of the main elements of a menu:
+-- .cke_menu -----------------+
| +-- .cke_menuitem --------+ |
| | +-- .cke_menubutton ---+ | |
| | | | | |
| | +----------------------+ | |
| +--------------------------+ |
| +-- .cke_menuseparator ----+ |
| ... |
+------------------------------+
This is the .cke_menubutton structure:
(Note that the menu button icon shares with toolbar button the common class .cke_button_icon to achieve the same outlook.)
+-- .cke_menubutton -------------------------------------------------------------------------+
| +-- .cke_menubutton_inner ---------------------------------------------------------------+ |
| | +-- .cke_menubutton_icon ---+ +-- .cke_menubutton_label --+ +-- .cke_cke_menuarrow --+ | |
| | | +-- .cke_button_icon ---+ | | | | | | |
| | | | | | | | | | | |
| | | +-----------------------+ | | | | | | |
| | +---------------------------+ +---------------------------+ +------------------------+ | |
| +----------------------------------------------------------------------------------------+ |
+--------------------------------------------------------------------------------------------+
Special outer level classes used in this file:
.cke_hc: Available when the editor is rendered on "High Contrast".
.cke_rtl: Available when the editor UI is on RTL.
*/
/* .cke_menuitem is the element that holds the entire structure of each of the
menu items. */
.cke_menubutton
{
/* The "button" inside a menu item is a <a> element.
Transforms it into a block. */
display: block;
}
.cke_menuitem span
{
/* Avoid the text selection cursor inside menu items. */
cursor: default;
}
.cke_menubutton:hover,
.cke_menubutton:focus,
.cke_menubutton:active
{
background-color: #D3D3D3;
display: block;
}
.cke_hc .cke_menubutton
{
padding: 2px;
}
.cke_hc .cke_menubutton:hover,
.cke_hc .cke_menubutton:focus,
.cke_hc .cke_menubutton:active
{
border: 2px solid;
padding: 0;
}
.cke_menubutton_inner {
display: table-row;
}
.cke_menubutton_icon,
.cke_menubutton_label,
.cke_menuarrow {
display: table-cell;
}
/* The menu item icon. */
.cke_menubutton_icon
{
background-color: #D7D8D7;
opacity: 0.70; /* Safari, Opera and Mozilla */
filter: alpha(opacity=70); /* IE */
padding: 4px;
}
.cke_hc .cke_menubutton_icon
{
height: 16px;
width: 0;
padding: 4px 0;
}
.cke_menubutton:hover .cke_menubutton_icon,
.cke_menubutton:focus .cke_menubutton_icon,
.cke_menubutton:active .cke_menubutton_icon
{
background-color: #D0D2D0;
}
.cke_menubutton_disabled:hover .cke_menubutton_icon,
.cke_menubutton_disabled:focus .cke_menubutton_icon,
.cke_menubutton_disabled:active .cke_menubutton_icon
{
/* The icon will get opacity as well when hovered. */
opacity: 0.3;
filter: alpha(opacity=30);
}
/* The textual part of each menu item. */
.cke_menubutton_label
{
padding: 0 5px;
background-color: transparent;
width: 100%;
vertical-align: middle;
}
.cke_menubutton_disabled .cke_menubutton_label
{
/* Greyed label text indicates a disabled menu item. */
opacity: 0.3;
filter: alpha(opacity=30);
}
.cke_menubutton_on
{
border: 1px solid #dedede;
background-color: #f2f2f2;
-moz-box-shadow: 0 0 2px rgba(0,0,0,.1) inset;
-webkit-box-shadow: 0 0 2px rgba(0,0,0,.1) inset;
box-shadow: 0 0 2px rgba(0,0,0,.1) inset;
}
.cke_menubutton_on .cke_menubutton_icon
{
padding-right: 3px;
}
.cke_menubutton:hover,
.cke_menubutton:focus,
.cke_menubutton:active
{
background-color: #EFF0EF;
}
.cke_panel_frame .cke_menubutton_label
{
display: none;
}
/* The separator used to separate menu item groups. */
.cke_menuseparator
{
background-color: #D3D3D3;
height: 1px;
filter: alpha(opacity=70); /* IE */
opacity: 0.70; /* Safari, Opera and Mozilla */
}
/* The small arrow shown for item with sub-menus. */
.cke_menuarrow
{
background-image: url(images/arrow.png);
background-position: 0 10px;
background-repeat: no-repeat;
padding: 0 5px;
}
.cke_rtl .cke_menuarrow
{
background-position: 5px -13px;
background-repeat: no-repeat;
}
.cke_menuarrow span
{
display: none;
}
.cke_hc .cke_menuarrow span
{
vertical-align: middle;
display: inline;
}
|
tests/miscellaneous/detachedConnectionsScopeBugMooTools.html | doubleblacktech/learn-plumb | <!doctype html>
<html>
<head>
<title>detached scope problem</title>
<meta http-equiv="X-UA-Compatible" content="IE=7">
<link rel="stylesheet" href="/mp.css"></link>
<link rel="stylesheet" href="../../demo/css/jsPlumbDemo.css"></link>
<link rel="stylesheet" href="../../demo/css/demo.css"></link>
<style type="text/css">
.dropHover { border:1px dotted red; }
.dragActive { border:2px dotted orange; }
._jsPlumb_endpoint { z-index:100; }
#window1 { left:2em; top:2em; }
#window2 { left:40em; top:2em; }
#window3 { left:2em; top:26em; }
#window4 { left:40em; top:26em; }
</style>
</head>
<body onunload="jsPlumb.unload();">
<div class="window" id="window1">WINDOW 1</div>
<div class="window" id="window2">WINDOW 2</div>
<div class="window" id="window3">WINDOW 3</div>
<div class="window" id="window4">WINDOW 4</div>
<script type="text/javascript" src="http://explorercanvas.googlecode.com/svn/trunk/excanvas.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/mootools/1.3.2/mootools-yui-compressed.js"></script>
<script type="text/javascript" src="../../js/lib/mootools-1.3.2.1-more.js"></script>
<script type="text/javascript" src="../../js/lib/jsBezier-0.2-min.js"></script>
<!-- main jsplumb engine -->
<script type="text/javascript" src="../../js/1.3.2/jsPlumb-1.3.2-RC1.js"></script>
<!-- connectors, endpoint and overlays -->
<script type="text/javascript" src="../../js/1.3.2/jsPlumb-defaults-1.3.2-RC1.js"></script>
<!-- SVG renderer -->
<script type="text/javascript" src="../../js/1.3.2/jsPlumb-renderers-svg-1.3.2-RC1.js"></script>
<!-- canvas renderer -->
<script type="text/javascript" src="../../js/1.3.2/jsPlumb-renderers-canvas-1.3.2-RC1.js"></script>
<!-- vml renderer -->
<script type="text/javascript" src="../../js/1.3.2/jsPlumb-renderers-vml-1.3.2-RC1.js"></script>
<!-- jquery jsPlumb adapter -->
<script type="text/javascript" src="../../js/1.3.2/mootools.jsPlumb-1.3.2-RC1.js"></script>
<script type="text/javascript">
window.addEvent('domready', function() {
// chrome fix.
document.onselectstart = function () { return false; };
jsPlumb.DefaultDragOptions = { cursor: 'pointer', zIndex:2000 };
var e1 = {
anchor:[1,0.5,1,0],
isSource:true,
isTarget:true,
dragOptions:{ scope:"dragType1" },
dropOptions:{
scope:"dragType2",
hoverClass:'dropHover',
activeClass:'dragActive'
},
connectorStyle:{strokeStyle:"rgb(145,145,145)", lineWidth:7}
};
var e2 = {
anchor:[0,0.5,-1,0],
isSource:true,
isTarget:true,
dragOptions:{
scope:"dragType2"
},
dropOptions:{
scope:"dragType1",
hoverClass:"dropHover",
activeClass:'dragActive'
},
connectorStyle:{strokeStyle:"rgb(145,145,145)", lineWidth:7}
};
jsPlumb.addEndpoint("window1", e1);
jsPlumb.addEndpoint("window3", e1);
jsPlumb.addEndpoint("window2", e2);
jsPlumb.addEndpoint("window4", e2);
});
</script>
</body>
</html>
|
sites/all/modules/quickbar/theme/icons.css | anouschka42/anahasselcom |
ul.menu span.icon,
ul.quickbar-list span.icon,
ul.links span.icon { background:transparent url(icons.png) -30px 0px no-repeat; }
div.depth-1 span.icon { background:transparent url(icons.png) 0px 0px no-repeat; }
.path-admin-content-add span.icon { background-position:-60px 0px !important; }
.path-admin-content-aggregator span.icon { background-position:-210px -150px !important; }
.path-admin-settings-wysiwyg span.icon,
.path-admin-settings-fckeditor span.icon,
.path-admin-settings-tinymce span.icon,
.path-admin-content-node span.icon { background-position:-90px 0px !important; }
.path-admin-settings-date-time span.icon { background-position:-120px 0px !important; }
.path-admin-settings-filters span.icon { background-position:-30px -60px !important; }
.path-admin-content-node-settings span.icon { background-position:0px -150px !important; }
.path-admin-structure-translate span.icon,
.path-admin-settings-language span.icon { background-position:0px -60px !important; }
.path-admin-settings-performance span.icon { background-position:-30px -90px !important; }
.path-admin-reports-search span.icon,
.path-admin-settings-search span.icon { background-position:-30px -30px !important; }
.path-admin-settings-devel span.icon,
.path-admin-settings-site-maintenance span.icon { background-position:-90px -90px !important; }
.path-admin-settings-site span.icon { background-position:-60px -90px !important; }
.path-admin-structure-menu span.icon { background-position:-150px 0px !important; }
.path-admin-content-book span.icon { background-position:-180px 0px !important; }
.path-admin-content-forum span.icon { background-position:-90px -150px !important; }
.path-admin-content-comment span.icon { background-position:-210px 0px !important; }
.path-admin-structure-types span.icon { background-position:-120px -30px !important; }
.path-admin-structure-taxonomy span.icon { background-position:-180px -30px !important; }
.path-admin-settings-mailhandler span.icon,
.path-admin-content-mailhandler span.icon { background-position:-210px -30px !important; }
.path-admin-settings-feedapi span.icon,
.path-admin-content-feed span.icon,
.path-admin-content-rss-publishing span.icon { background-position:-150px -30px !important; }
.path-admin-structure-block span.icon { background-position:-210px -90px !important; }
.path-admin-settings-image-toolkit span.icon,
.path-admin-settings-imageapi span.icon,
.path-admin-structure-imagecache span.icon { background-position:-120px -60px !important; }
.path-admin-structure-features span.icon,
.path-admin-structure-modules span.icon { background-position:-180px -90px !important; }
.path-admin-structure-themes span.icon { background-position:-120px -90px !important; }
.path-admin-settings-actions span.icon,
.path-admin-structure-trigger span.icon { background-position:-180px -120px !important; }
.path-admin-structure-views span.icon { background-position:-210px -60px !important; }
.path-admin-settings-uploads span.icon { background-position:-90px -60px !important; }
.path-admin-reports-access-denied span.icon { background-position:-90px -30px !important; }
.path-admin-reports-page-not-found span.icon { background-position:-30px -150px !important; }
.path-admin-reports-status span.icon { background-position:-60px -30px !important; }
.path-admin-user-rules span.icon { background-position:0px -120px !important; }
.path-admin-user-captcha span.icon,
.path-admin-user-permissions span.icon { background-position:-30px -120px !important; }
.path-admin-user-roles span.icon { background-position:-60px -120px !important; }
.path-admin-og span.icon,
.path-admin-user-user span.icon { background-position:-90px -120px !important; }
.path-admin-user-profile span.icon,
.path-admin-user-settings span.icon { background-position:-150px -120px !important; }
.path-admin-settings-logging span.icon { background-position:-150px -60px !important; }
.path-admin-reports-hits span.icon { background-position:-60px -150px !important; }
.path-admin-reports-updates span.icon { background-position:-150px -90px !important; }
.path-admin-reports-dblog span.icon { background-position:-210px -120px !important; }
.path-admin-reports-pages span.icon { background-position:0px -180px !important }
.path-admin-reports-referrers span.icon { background-position:-180px -150px !important; }
.path-admin-reports-settings span.icon { background-position:-210px -180px !important; }
.path-admin-reports-visitors span.icon { background-position:-30px -180px !important; }
.path-admin-settings-site-information span.icon { background-position:-60px -30px !important; }
.path-admin-settings-file-system span.icon,
.path-admin-content-backup_migrate span.icon { background-position:-60px -60px !important; }
.path-admin-structure-contact span.icon { background-position:-60px -180px !important; }
.path-admin-settings-reroute_email span.icon,
.path-admin-settings-smtp span.icon,
.path-admin-content-simplenews span.icon { background-position:-210px -30px !important; }
.path-admin-settings-blogapi span.icon { background-position:-90px -180px !important; }
.path-admin-settings-simplenews span.icon { background-position:0px -150px !important; }
.path-admin-settings-throttle span.icon { background-position:-120px -150px !important; }
.path-admin-content-nodequeue span.icon { background-position:-180px -30px !important; }
.path-admin-settings-clean-urls span.icon { background-position:-180px -180px !important; }
.path-admin-structure-path span.icon { background-position:-150px -180px !important; }
.path-admin-settings-error-reporting span.icon { background-position:-150px -150px !important; }
|
toolchain/share/doc/arm-arm-none-eabi/html/libm/pow.html | byeonggonlee/lynx-ns-gb | <html lang="en">
<head>
<title>pow - Untitled</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Untitled">
<meta name="generator" content="makeinfo 4.13">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="Math.html#Math" title="Math">
<link rel="prev" href="nextafter.html#nextafter" title="nextafter">
<link rel="next" href="remainder.html#remainder" title="remainder">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family:serif; font-weight:normal; }
span.sansserif { font-family:sans-serif; font-weight:normal; }
--></style>
<link rel="stylesheet" type="text/css" href="../cs.css">
</head>
<body>
<div class="node">
<a name="pow"></a>
<p>
Next: <a rel="next" accesskey="n" href="remainder.html#remainder">remainder</a>,
Previous: <a rel="previous" accesskey="p" href="nextafter.html#nextafter">nextafter</a>,
Up: <a rel="up" accesskey="u" href="Math.html#Math">Math</a>
<hr>
</div>
<h3 class="section">1.45 <code>pow</code>, <code>powf</code>—x to the power y</h3>
<p><a name="index-pow-125"></a><a name="index-powf-126"></a><strong>Synopsis</strong>
<pre class="example"> #include <math.h>
double pow(double <var>x</var>, double <var>y</var>);
float powf(float <var>x</var>, float <var>y</var>);
</pre>
<p><strong>Description</strong><br>
<code>pow</code> and <code>powf</code> calculate <var>x</var> raised to the exponent <var>y</var>.
<p><br>
<strong>Returns</strong><br>
On success, <code>pow</code> and <code>powf</code> return the value calculated.
<p>When the argument values would produce overflow, <code>pow</code>
returns <code>HUGE_VAL</code> and set <code>errno</code> to <code>ERANGE</code>. If the
argument <var>x</var> passed to <code>pow</code> or <code>powf</code> is a negative
noninteger, and <var>y</var> is also not an integer, then <code>errno</code>
is set to <code>EDOM</code>. If <var>x</var> and <var>y</var> are both 0, then
<code>pow</code> and <code>powf</code> return <code>1</code>.
<p>You can modify error handling for these functions using <code>matherr</code>.
<p><br>
<strong>Portability</strong><br>
<code>pow</code> is ANSI C. <code>powf</code> is an extension.
<br>
</body></html>
|
wicket/src/test/java/org/apache/wicket/util/tester/MockFormPage.html | Servoy/wicket | <?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:wicket="http://www.wicketframework.org">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Insert title here</title>
</head>
<body>
<form wicket:id="form">
<input type="text" wicket:id="text" />
<input type="checkbox" wicket:id="checkbox" />
<textarea wicket:id="textarea"></textarea>
<input wicket:id="submit" type="submit"/>
</form>
</body>
</html>
|
wts/tests/webaudio/oscillatornode_start_type.html | crosswalk-project/web-testing-service | <!DOCTYPE html>
<!--
Copyright (c) 2012 Intel Corporation.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of works must retain the original copyright notice, this list
of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the original copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of Intel Corporation nor the names of its contributors
may be used to endorse or promote products derived from this work without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
Gan, Nian <nianx.gan@intel.com>
-->
<html>
<head>
<title>WebAudio Test: oscillatornode_start_type</title>
<link rel="author" title="Intel" href="http://www.intel.com" />
<link rel="help" href="https://webaudio.github.io/web-audio-api/#the-oscillatornode-interface" />
<meta name="flags" content="" />
<meta name="assert" content="Check if OscillatorNode.start is method type" />
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="./support/webaudio.js"></script>
</head>
<body>
<div id="log"></div>
<script type="text/javascript">
test(function () {
try{
var context = new AudioContext();
var oscillatornode = context.createOscillator();
assert_true(typeof oscillatornode.start == "function", "Check if OscillatorNode.start is method type");
} catch (e){
assert_true(false, "Exception: {" + e.message + "}" + " Check if OscillatorNode.start is method type");
}
}, document.title);
</script>
</body>
</html>
|
chrome/browser/resources/chromeos/login/login_resources.html | jaruba/chromium.src | <link rel="stylesheet" href="chrome://resources/css/butter_bar.css">
<link rel="stylesheet" href="chrome://resources/css/dialogs.css">
<link rel="stylesheet" href="chrome://resources/css/list.css">
<link rel="stylesheet" href="chrome://resources/css/menu_button.css">
<link rel="stylesheet" href="chrome://resources/css/menu.css">
<link rel="stylesheet" href="chrome://resources/css/spinner.css">
<link rel="stylesheet" href="chrome://resources/css/widgets.css">
<link rel="stylesheet" href="apps_menu.css">
<link rel="stylesheet" href="../../../../../ui/login/bubble.css">
<link rel="stylesheet" href="enterprise_info.css">
<link rel="stylesheet" href="header_bar.css">
<link rel="stylesheet" href="network_dropdown.css">
<link rel="stylesheet" href="../../../../../ui/login/oobe.css">
<link rel="stylesheet" href="oobe_popup_overlay.css">
<link rel="stylesheet" href="oobe_screen.css">
<link rel="stylesheet" href="oobe_screen_enable_debugging.css">
<link rel="stylesheet" href="oobe_screen_eula.css">
<link rel="stylesheet" href="oobe_screen_eula_installation_settings_overlay.css">
<link rel="stylesheet" href="oobe_screen_network.css">
<link rel="stylesheet" href="oobe_screen_reset.css">
<link rel="stylesheet" href="oobe_screen_reset_confirmation_overlay.css">
<link rel="stylesheet" href="oobe_screen_hid_detection.css">
<link rel="stylesheet" href="oobe_screen_autolaunch.css">
<link rel="stylesheet" href="oobe_screen_enable_kiosk.css">
<link rel="stylesheet" href="oobe_screen_terms_of_service.css">
<link rel="stylesheet" href="oobe_screen_update.css">
<link rel="stylesheet" href="oobe_screen_auto_enrollment_check.css">
<link rel="stylesheet" href="oobe_screen_user_image.css">
<link rel="stylesheet" href="screen_app_launch_splash.css">
<link rel="stylesheet" href="../../../../../ui/login/screen_container.css">
<link rel="stylesheet" href="../../../../../ui/login/account_picker/screen_account_picker.css">
<link rel="stylesheet" href="screen_gaia_signin.css">
<link rel="stylesheet" href="screen_error_message.css">
<link rel="stylesheet" href="screen_tpm_error.css">
<link rel="stylesheet" href="screen_password_changed.css">
<link rel="stylesheet" href="screen_wrong_hwid.css">
<link rel="stylesheet" href="screen_supervised_user_creation.css">
<link rel="stylesheet" href="screen_confirm_password.css">
<link rel="stylesheet" href="screen_fatal_error.css">
<link rel="stylesheet" href="screen_device_disabled.css">
<link rel="stylesheet" href="../../../../../ui/login/account_picker/user_pod_row.css">
<link rel="stylesheet" href="../../options/chromeos/bluetooth.css">
<script src="chrome://resources/js/cr.js"></script>
<script src="chrome://resources/js/event_tracker.js"></script>
<script src="chrome://resources/js/cr/event_target.js"></script>
<script src="chrome://resources/js/cr/ui.js"></script>
<script src="chrome://resources/js/cr/ui/touch_handler.js"></script>
<script src="chrome://resources/js/cr/ui/array_data_model.js"></script>
<script src="chrome://resources/js/cr/ui/dialogs.js"></script>
<script src="chrome://resources/js/cr/ui/list_selection_controller.js"></script>
<script src="chrome://resources/js/cr/ui/list_selection_model.js"></script>
<script src="chrome://resources/js/cr/ui/list_single_selection_model.js"></script>
<script src="chrome://resources/js/cr/ui/list_item.js"></script>
<script src="chrome://resources/js/cr/ui/list.js"></script>
<script src="chrome://resources/js/cr/ui/grid.js"></script>
<script src="chrome://resources/js/cr/ui/position_util.js"></script>
<script src="chrome://resources/js/cr/ui/menu_item.js"></script>
<script src="chrome://resources/js/cr/ui/menu.js"></script>
<script src="chrome://resources/js/cr/ui/menu_button.js"></script>
<script src="chrome://resources/js/load_time_data.js"></script>
<script src="chrome://resources/js/util.js"></script>
<script src="chrome://oobe/strings.js"></script>
<script src="chrome://oobe/keyboard_utils.js"></script>
|
tests/wpt/web-platform-tests/wai-aria/region_without_name-manual.html | anthgur/servo | <!doctype html>
<html>
<head>
<title>region without name</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<link rel="stylesheet" href="/resources/testharness.css">
<link rel="stylesheet" href="/wai-aria/scripts/manual.css">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/wai-aria/scripts/ATTAcomm.js"></script>
<script>
setup({explicit_timeout: true, explicit_done: true });
var theTest = new ATTAcomm(
{
"steps" : [
{
"element" : "test",
"test" : {
"ATK" : [
[
"property",
"role",
"is",
"ROLE_SECTION"
],
[
"property",
"interfaces",
"contains",
"Text"
],
[
"property",
"interfaces",
"contains",
"Hypertext"
]
],
"AXAPI" : [
[
"property",
"AXRole",
"is",
"AXGroup"
],
[
"property",
"AXSubrole",
"is",
"<nil>"
],
[
"property",
"AXRoleDescription",
"is",
"group"
]
],
"IAccessible2" : [
[
"property",
"interfaces",
"contains",
"IAccessibleText2"
],
[
"property",
"interfaces",
"contains",
"IAccessibleHypertext2"
],
[
"property",
"role",
"is",
"IA2_ROLE_SECTION"
]
],
"MSAA" : [
[
"property",
"role",
"is",
"ROLE_SYSTEM_GROUPING"
]
],
"UIA" : [
[
"property",
"Control Group",
"is",
"Group"
],
[
"property",
"landmarkType",
"isNot",
"Custom"
],
[
"property",
"localizedLandmarkType",
"isNot",
"region"
]
]
},
"title" : "step 1",
"type" : "test"
}
],
"title" : "region without name"
}
) ;
</script>
</head>
<body>
<p>This test examines the ARIA properties for region without name.</p>
<div role="region" id="test" tabindex="-1">
<article>This is article 1</article>
</div>
<div id="manualMode"></div>
<div id="log"></div>
<div id="ATTAmessages"></div>
</body>
</html>
|
third_party/blink/web_tests/http/tests/inspector-protocol/network/resources/inner-iframe.html | nwjs/chromium.src | <body>IFRAME</body>
|
thirdparty/sources/boost_1_60_0/doc/html/CopyConstructible.html | gwq5210/litlib | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<!-- Copyright (C) 2002 Douglas Gregor <doug.gregor -at- gmail.com>
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt) -->
<title>Redirect to generated documentation</title>
<meta http-equiv="refresh" content="0; URL=http://www.boost.org/doc/libs/master/doc/html/CopyConstructible.html">
</head>
<body>
Automatic redirection failed, please go to
<a href="http://www.boost.org/doc/libs/master/doc/html/CopyConstructible.html">http://www.boost.org/doc/libs/master/doc/html/CopyConstructible.html</a>
</body>
</html>
|
venv/bin/libs/numeric/ublas/doc/html/structboost_1_1numeric_1_1ublas_1_1column__major__tag.html | NixaSoftware/CVis | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>ublas: boost::numeric::ublas::column_major_tag Struct Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div class="navpath"><b>boost</b>::<b>numeric</b>::<b>ublas</b>::<a class="el" href="structboost_1_1numeric_1_1ublas_1_1column__major__tag.html">column_major_tag</a>
</div>
</div>
<div class="contents">
<h1>boost::numeric::ublas::column_major_tag Struct Reference</h1><!-- doxytag: class="boost::numeric::ublas::column_major_tag" --><table border="0" cellpadding="0" cellspacing="0">
</table>
</div>
<hr size="1"/><address style="text-align: right;"><small>Generated on Sun Jul 4 20:31:06 2010 for ublas by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>
|
www/www/protected/app/extensions/bootstrap/assets/js/ckeditor/contents.css | NikolaiJeliazkov/cms1 | /*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
body
{
/* Font */
font-family: Arial, Verdana, sans-serif;
font-size: 12px;
/* Text color */
color: #222;
/* Remove the background color to make it transparent */
background-color: #fff;
}
ol,ul,dl
{
/* IE7: reset rtl list margin. (#7334) */
*margin-right:0px;
/* preserved spaces for list items with text direction other than the list. (#6249,#8049)*/
padding:0 40px;
}
|
Topics/07. Web Storages/demos/4. web-storages-save-objects.html | Didexe/JavaScript-Applications | <html>
<head>
<title>JavaScript APIs - local and session storage</title>
<script type="text/javascript" src="scripts/web-storage-objects.js"></script>
</head>
<body>
<script type="text/javascript">
var obj = {name:"Peter Petrov"};
var larr = localStorage.getObject("arr");
localStorage.setObject("obj", obj);
localStorage.setObject("arr",[1,2,3,4,5,6,7,8]);
console.log("-----localStorage: ")
console.log(localStorage.getObject("obj"));
console.log(larr);
console.log(larr[2]);
sessionStorage.setObject("obj",obj);
sessionStorage.setObject("arr",[1,2,3,4,5,6,7,8]);
console.log("-----sessionStorage: ")
console.log(sessionStorage.getObject("obj"));
var sarr = sessionStorage.getObject("arr");
console.log(sarr);
console.log(sarr[2]);
</script>
</body>
</html> |
v7.38.0/docs/libcurl/opts/CURLOPT_KEYPASSWD.html | iSCInc/cURL | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html><head>
<title>CURLOPT_KEYPASSWD man page</title>
<meta name="generator" content="roffit">
<STYLE type="text/css">
P.level0 {
padding-left: 2em;
}
P.level1 {
padding-left: 4em;
}
P.level2 {
padding-left: 6em;
}
span.emphasis {
font-style: italic;
}
span.bold {
font-weight: bold;
}
span.manpage {
font-weight: bold;
}
h2.nroffsh {
background-color: #e0e0e0;
}
span.nroffip {
font-weight: bold;
font-size: 120%;
font-family: monospace;
}
p.roffit {
text-align: center;
font-size: 80%;
}
</STYLE>
</head><body>
<p class="level0"><a name="NAME"></a><h2 class="nroffsh">NAME</h2>
<p class="level0">CURLOPT_KEYPASSWD - set passphrase to private key <a name="SYNOPSIS"></a><h2 class="nroffsh">SYNOPSIS</h2>
<p class="level0">#include <curl/curl.h>
<p class="level0">CURLcode curl_easy_setopt(CURL *handle, CURLOPT_KEYPASSWD, char *pwd); <a name="DESCRIPTION"></a><h2 class="nroffsh">DESCRIPTION</h2>
<p class="level0">Pass a pointer to a zero terminated string as parameter. It will be used as the password required to use the <a Class="emphasis" href="./CURLOPT_SSLKEY.html">CURLOPT_SSLKEY</a> or <a Class="emphasis" href="./CURLOPT_SSH_PRIVATE_KEYFILE.html">CURLOPT_SSH_PRIVATE_KEYFILE</a> private key. You never needed a pass phrase to load a certificate but you need one to load your private key. <a name="DEFAULT"></a><h2 class="nroffsh">DEFAULT</h2>
<p class="level0">NULL <a name="PROTOCOLS"></a><h2 class="nroffsh">PROTOCOLS</h2>
<p class="level0">All TLS based protocols: HTTPS, FTPS, IMAPS, POP3, SMTPS etc. <a name="EXAMPLE"></a><h2 class="nroffsh">EXAMPLE</h2>
<p class="level0">TODO <a name="AVAILABILITY"></a><h2 class="nroffsh">AVAILABILITY</h2>
<p class="level0">This option was known as CURLOPT_SSLKEYPASSWD up to 7.16.4 and CURLOPT_SSLCERTPASSWD up to 7.9.2. <a name="RETURN"></a><h2 class="nroffsh">RETURN VALUE</h2>
<p class="level0">Returns CURLE_OK if TLS enabled, CURLE_UNKNOWN_OPTION if not, or CURLE_OUT_OF_MEMORY if there was insufficient heap space. <a name="SEE"></a><h2 class="nroffsh">SEE ALSO</h2>
<p class="level0"><a Class="manpage" href="./CURLOPT_SSLKEY.html">CURLOPT_SSLKEY</a> <a Class="manpage" href="./CURLOPT_SSH_PRIVATE_KEYFILE.html">CURLOPT_SSH_PRIVATE_KEYFILE</a> <span Class="manpage"> </span> <p class="roffit">
This HTML page was made with <a href="http://daniel.haxx.se/projects/roffit/">roffit</a>.
</body></html>
|
www2/core/components/settings/templates/about.html | jayteemi/educatoursja | <ion-view view-title="{{ 'mm.settings.about' | translate }}" >
<ion-content>
<div class="list">
<section class="item">
<h2>{{appname}}</h2>
</section>
<section class="item item-divider">
<p>{{ 'mm.settings.license' | translate }}</p>
</section>
<div class="item item-text-wrap">
<h2>Apache 2.0</h2>
<p><a href="http://www.apache.org/licenses/LICENSE-2.0" mm-browser>http://www.apache.org/licenses/LICENSE-2.0</a></p>
</div>
</div>
</ion-content>
</ion-view> |
guide/raw-content-zhtw/5_remote_control.html | thenaughtychild/git-it | <div class="challenge">
<h2>關卡內容:</h2>
<p>把電腦裡的 <n>repository</n> 和 <adj>remote</adj> 的 <n>repository</n>連結起來,並 <v>push</v> 電腦上的修改。</p>
</div>
<h2><n>Remotes</n></h2>
<p>當專案傳到 GitHub 上面,它會被儲存在 GitHub 的主機上。這個專案就變成了 <strong><adj>remote</adj></strong> <n>repository</n>,因為專案現在 GitHub 的主機上也有一份了,所以叫做 <n>remote</n>。當你把<strong>電腦上的</strong>程式修改 <strong><v>push</v></strong>到 <n>remote</n>,這就叫做同步。</p>
<p>其他人可以透過 <v>pull</v> 你的 <adj>remote</adj> <n>repository</n> 來取得專案的最新版本,儲存到他們的電腦上。這樣一來,大家就可以一起修改同一個專案,而不需要用 USB 或 Email 等其他方式來取得專案的最新進度。</p>
<img src="../assets/imgs/remotes.png" width="600">
<h2>步驟:建立一個 <adj>Remote</adj> <n>Repository</n></h2>
<p>你想要把<strong>電腦上的</strong>版本和存在 GitHub.com 上的 <strong><adj>remote</adj></strong> 版本做同步。所以我們先在 GitHub 上開啟一個新的 <adj>remote</adj> <n>repository</n>。</p>
<ul>
<li>到 <a href="http://github.com/" target="_blank">github.com</a> 登入,然後按一下右上角的 '+' 號來新增一個 <n>repository</n>。</li>
<li>取一個名字,最好和你電腦上的程式名稱一樣,也就是 'hello-world',並且給它一個簡短的說明。</li>
<li>設定為 public(公開)。</li>
<li>不要勾選 'initialize with a README',因為我們已經在電腦上的版本建立了一個檔案,叫做 'readme.txt'。</li>
<li>也不要修改 .gitignore 和 license 的設定,保留原先 'none' 的設定就好。</li>
<li>按下 'create repository'!</li>
</ul>
<h2>Readme(讀我檔案)、.gitignore 和 License(著作權聲明)</h2>
<p>在開源軟體中,這些是你將會常常見到的檔案。</p>
<p><strong><n>readme</n></strong> 通常是用來解釋一個程式的功用、使用方法以及如何貢獻程式碼(但有時候這部份也會另外用一個 CONTRIBUTING.md 來說明)。</p>
<p><strong><n>.gitignore</n></strong> 則是要忽略的檔案清單,這是用來告訴 Git,當在做版本控制記錄的時候,<em>不要</em>理會這些檔案。例如,當某個檔案中包含密碼的時候,我們就不希望 Git 記錄它們下來。</p>
<p><strong>License</strong>(著作權聲明)是用來聲明一個程式可以、或不可以被怎麼樣的使用。你可以到
<a href="http://www.choosealicense.com" target="_blank">choosealicense.com</a> 參考一些範例。</p>
<p>但就現在在做的練習來說,我們暫時不需要著作權聲明。</p>
<h2>步驟:把電腦上的 <n>repository</n> 和 <adj>remote</adj> <n>repository</n> 連結在一起</h2>
<p>現在我們已經在 <n>remote</n>(GitHub 上)新建了一個 <n>repository</n>。在 <n>repository</n> 的頁面上你會看到一個 'Quick Setup' 的部份,確認選擇的網址是 'HTTP',而不是 'SSH',右邊的欄位就是這個 <adj>remote</adj> <n>repository</n> 在 GitHub 主機上的位址。</p>
<p>回到終端機,在我們剛剛初始化過 Git 的 'hello-world' 的資料夾裡頭,我們需要告訴 Git 這個 <n>remote</n> 的位址。同一個 Git 專案中,可以有很多不同的 <n>remote</n>,所以每一個 <n>remote</n> 都需要一個名字。而最主要、原始的那一個,通常都是叫做 <code>origin</code>。</p>
<code>$ git remote add origin <URLFROMGITHUB></code>
<p>你電腦上的 <n>repository</n> 現在知道了專案有一個在 GitHub 上的 <strong><n>remote</n></strong>,叫做 'origin'。你可以想像這就好像是把一個電話號碼配上一個名字一樣,這樣當你要打電話的時候,就不用記得號碼了。</p>
<blockquote>
<p><strong>備註:</strong></p>
<p>如果你有安裝 <strong>GitHub for Windows</strong>,Git 初始化的時候就會直接設定了一個叫做 'origin' 的 <n>remote</n>,所以你不需要新增,只要設定這個 'origin' <n>remote</n> 的位址就好了:</p>
<code>$ git remote set-url origin <URLFROMGITHUB></code>
</blockquote>
<h2>步驟:把你的修改 <v>Push</v> 到 <n>remote</n></h2>
<p>接下來你需要 <strong><v>push</v></strong>(傳送)所有你在電腦上做的修改到 GitHub 上的 <n>remote</n>。通常你會希望 <n>remote</n> 的程式版和電腦上的程式版本是一樣的。</p>
<p>Git 有一個 <n>branch</n> 系統,讓你可以同時修改一個程式的不同功能,之後會再深入介紹。系統會預設一個名稱給最初的 <n>branch</n>,通常就會叫做 'master'。當你 <v>push</v>(或之後 <v>pull</v>)一個專案的時候,你必須要告訴 Git 你想要的是哪一個 <n>remote</n> 上的哪一個 <n>branch</n> 的進度。</p>
<p>也就是說,我們現在想要把 'master' <n>branch</n> 的程式傳送到先前新增的 'origin' <n>remote</n>。</p>
<code>$ git push origin master</code>
<p>完成之後,你現在就可以回到 GitHub 的 <n>repository</n> 頁面,重新整理。哇哇哇!程式是不是都同步了呢?恭喜你建立了第一個公開的 <n>repository</n>!</p>
<div class="verify">
<h3>確認你完成了所有步驟:</h3><code>git-it verify</code>
<h3>前往下一個關卡:</h3><code>git-it</code>
</div>
<div id="git-tips">
<h2>撇步</h2>
<ul>
<li><strong>新增 <n>remote</n> 連結</strong></li>
<code>$ git remote add <REMOTENAME> <URL></code>
<li><strong>幫一個 <n>remote</n> 設定位址</strong></li>
<code>$ git remote set-url <REMOTENAME> <URL></code>
<li><strong><v>Pull</v> <n>remote</n> 的程式</strong></li>
<code>$ git pull <REMOTENAME> <BRANCHNAME></code>
<li><strong>看你有哪些 <n>remote</n> 連結</strong></li>
<code>$ git remote -v</code>
<li><strong><v>Push</v> 電腦上的程式到 <n>remote</n></strong></li>
<code>$ git push <REMOTENAME> <BRANCH></code>
</ul>
</div>
|
trunk/php/openlayers-master/examples/google.html | pjhooker/monferratopaesaggi | <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="apple-mobile-web-app-capable" content="yes">
<title>OpenLayers Google (v3) Layer Example</title>
<link rel="stylesheet" href="../theme/default/style.css" type="text/css">
<link rel="stylesheet" href="style.css" type="text/css">
<script src="http://maps.google.com/maps/api/js?v=3&sensor=false"></script>
<script src="../lib/OpenLayers.js"></script>
<script src="google.js"></script>
</head>
<body onload="init()">
<h1 id="title">Google (v3) Layer Example</h1>
<div id="tags">
Google, api key, apikey, light
</div>
<p id="shortdesc">
Demonstrate use the Google Maps v3 API.
</p>
<div id="map" class="smallmap"></div>
<div id="docs">
<p><input id="animate" type="checkbox" checked="checked">Animated
zoom (if supported by GMaps on your device)</input></p>
<p>
If you use the Google Maps v3 API with a Google layer, you don't
need to include an API key. This layer only works in the
spherical mercator projection. See the
<a href="google.js" target="_blank">google.js source</a>
to see how this is done.
</p>
</div>
</body>
</html>
|
sources/doc/ns3_html_theme/static/ns3_stylesheet.css | m00re/ns-3-stdma | /* ns-3 changes to the default CSS from Doxygen and Sphinx */
body,
table,
div,
p,
dl {
color: black;
font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif;
font-size: 12px;
}
a {
color: #91A501;
font-weight: bold;
}
/* Sphinx headings */
div.body h1,
div.body h2,
div.body h3,
div.body h4,
div.body h5,
div.body h6 {
background-image: url('nav_f.png');
}
/* Sphinx figure captions */
p.caption {
font-weight: bold;
}
/* Doxygen side bar */
#nav-tree {
font-size: 12px;
}
#nav-tree a {
font-weight: normal;
}
/* Sphinx nav links bar (relbar) */
div.related {
background-image:url('tab_b.png')
}
div.related h3 {
display: none;
}
div.related a {
color: #91A501;
font-size: 14px;
font-weight: bold;
}
div.related li {
background-image: url('bc_s.png');
background-position: 100% 40%;
background-repeat: no-repeat;
padding-left: 10px;
padding-right: 15px;
}
div.related li.right {
background-image: none;
padding-left: 0px;
padding-right: 0px;
}
/* Sphinx side bar */
div.sphinxsidebar {
font-size: 12px;
}
div.sphinxsidebar a {
font-weight: normal;
}
/* Title bar elements */
#titlearea {
background-image:url('bar-top.png');
background-repeat:repeat;
border-bottom: 1px solid #5B5B5B;
color: white;
}
#projectlogo {
color: white;
margin: 10px;
text-align: center;
vertical-align: middle;
width: 220px;
}
#projecttext {
align: left;
font-color:white;
padding-left: 2em;
width: 250px;
}
#projectbrief {
color: white;
font: 120% Tahoma, Arial,sans-serif;
margin: 0px;
padding: 0px;
}
#projectnumber {
color: white;
font: 100% Tahoma, Arial,sans-serif;
margin: 0px;
padding: 0px;
}
#projectsection {
color: white;
font: 24pt Aldo, Tahoma, Arial,sans-serif;
margin-right: 10px;
margin: 10px;
text-align: right;
vertical-align: middle;
}
/*
ns-3 Main-menu, based on WordPress site
Drop down menu based on Simple Javascript Drop-Down Menu v2.0
http://javascript-array.com/scripts/simple_drop_down_menu/
*/
#ns3-menu .menu {
background-image: url('menu-bgr-400.png');
/* background-origin: padding-box; */
/* background-position: -10px 0; */
background-repeat: no-repeat;
display: table-cell;
float:left;
height: 40px;
margin: 0px 0px 0px 0px;
overflow: hidden;
padding:0px 0px 0px 0px;
vertical-align: middle;
width: 450px;
}
#ns3-menu .menu ul {
/* float:left; */
height: 40;
list-style:none;
margin:0px 0px 0px -2px;
/* overflow:hidden; */
padding:0px 0px 0px 0px;
z-index: 30;
}
#ns3-menu .menu ul li {
background-image: url('ver.png');
background-origin: padding-box;
background-position: 0 11px;
background-repeat: no-repeat;
color:#ffffff;
float:left;
font-family: Aldo, Tahoma, Arial, sans-serif;
font-size: 14px;
/* height:40px; */
margin:0px 0px 0px 0px;
/* overflow:hidden; */
padding:11px 13px 0px 12px;
text-transform:uppercase;
}
#ns3-menu .menu ul li a {
color:#ffffff;
/* cursor: pointer; */
display:block;
float:left;
font-weight: normal; /* default anchors are bold */
text-decoration:none; /* default anchors are underlined */
}
#ns3-menu .menu ul li a:hover {
color:#cadc48;
text-decoration:none; /* don't add underline on hover */
}
#ns3-menu .menu div {
background: #94A901;
background-size: 100%; 100%
color:#ffffff;
position: absolute;
visibility: hidden;
}
#ns3-menu .menu div a {
position: relative;
display: block;
float: left;
font-family: Aldo, Tahoma, Arial, sans-serif;
font-size: 14px;
margin: 0;
padding: 5px 10px;
text-align: left;
width: auto;
white-space: nowrap;
}
#ns3-menu .menu div a:hover {
color:#cadc48;
text-decoration:none; /* don't add underline on hover */
}
|
third_party/blink/web_tests/external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-max-block-size-ref.html | scheib/chromium | <!DOCTYPE html>
<style>
.fieldset {
border: 2px solid gray;
margin: 1em;
padding: 0;
width: 20em;
}
.f1 {
overflow: auto;
max-height: 3em;
}
.f2 {
max-height: 0;
}
</style>
<div class="fieldset f1">
<div>foo</div>
<div>foo</div>
<div>foo</div>
<div>foo</div>
<div>foo</div>
</div>
<div class="fieldset f1">
<div>foo</div>
</div>
<div class="fieldset f2">
<div>foo</div>
</div>
|
tests/wpt/web-platform-tests/css/css-paint-api/paint2d-image.https.html | anthgur/servo | <!DOCTYPE html>
<html class="reftest-wait">
<link rel="match" href="paint2d-image-ref.html">
<style>
#output {
width: 300px;
height: 300px;
background-image: paint(image);
border-image: url("./resources/html5.png");
}
</style>
<script src="/common/reftest-wait.js"></script>
<script src="/common/worklet-reftest.js"></script>
<div id="output"></div>
<script id="code" type="text/worklet">
registerPaint('image', class {
static get inputProperties() { return [ 'border-image-source' ]; };
paint(ctx, geom, styleMap) {
ctx.fillStyle = 'green';
ctx.fillRect(0, 0, geom.width, geom.height);
ctx.drawImage(styleMap.get('border-image-source'), 0, 0);
}
});
</script>
<script>
importWorkletAndTerminateTestAfterAsyncPaint(CSS.paintWorklet, document.getElementById('code').textContent);
</script>
</html>
|
tests/wpt/web-platform-tests/css/css-transforms-1/perspective-origin-003.html | shinglyu/servo | <!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Transforms Test: perspective-origin - 50% bottom('bottom' computes to '100%' in vertical position)</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<link rel="author" title="Jieqiong Cui" href="mailto:jieqiongx.cui@intel.com">
<link rel="help" title="11. The 'perspective-origin' Property" href="http://www.w3.org/TR/css-transforms-1/#propdef-perspective-origin">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<meta name="flags" content="">
<meta name="assert" content="The 'perspective-origin' property set 'bottom' computes to 100% for the vertical position.">
<style>
div {
height: 100px;
position: absolute;
width: 100px;
}
#test {
perspective: 2px;
perspective-origin: 50% bottom;
}
#redSquare {
background-color: red;
transform: translateZ(0px);
}
#ref {
perspective: 2px;
perspective-origin: 50% 100%;
}
#greenSquare {
background-color: green;
height: 50px;
left: 25px;
top: 50px;
transform: translateZ(1px);
width: 50px;
}
</style>
<body>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div id="test"><div id="redSquare"></div></div>
<div id="ref"><div id="greenSquare"></div></div>
</body>
|
tests/unit/content/index.html | arschmitz/jquery-mobile | <!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>jQuery Mobile Content Widget Test Suite</title>
<!-- meta viewport left out on purpose for test append -->
<script src="../../../external/requirejs/require.js"></script>
<script src="../../../js/requirejs.config.js"></script>
<script src="../../../js/jquery.tag.inserter.js"></script>
<script src="../../../external/qunit/qunit.js"></script>
<script src="../../jquery.testHelper.js"></script>
<script>
$.testHelper.asyncLoad([
[ "jquery.mobile.navigation" ],
[ "content_core.js" ]
]);
</script>
<link rel="stylesheet" href="../../../external/qunit/qunit.css"/>
<link rel="stylesheet" href="../../jqm-tests.css"/>
<script src="../../swarminject.js"></script>
</head>
<body>
<div id="qunit"></div>
</body>
</html>
|
tests/integration/navigation/sequence/sequence-redirect.html | arschmitz/jquery-mobile | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery Mobile Sequence Test Suite</title>
<script src="../../../../external/requirejs/require.js"></script>
<script src="../../../../js/requirejs.config.js"></script>
<script src="../../../../js/jquery.tag.inserter.js"></script>
<script>
$(document).bind('mobileinit',function(){
// Expect content to inherit this theme when not explicitly set
$.mobile.page.prototype.options.contentTheme = "d";
});
</script>
<script src="../../../jquery.setNameSpace.js"></script>
<script src="../../../jquery.testHelper.js"></script>
<script src="../../../../external/qunit/qunit.js"></script>
<script>
$.testHelper.asyncLoad([
[
"widgets/dialog",
"widgets/page",
"widgets/popup"
],
[ "jquery.mobile.init" ],
[
"sequence_core.js"
]
], "../../../../js");
</script>
<link rel="stylesheet" href="../../../../css/themes/default/jquery.mobile.css"/>
<link rel="stylesheet" href="../../../../external/qunit/qunit.css"/>
<script src="../../../swarminject.js"></script>
</head>
<body>
<h1 id="qunit-header">jQuery Mobile Sequence Test Suite</h1>
<h2 id="qunit-banner"></h2>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests">
</ol>
<div data-nstest-role="page" id="sequenceRedirect"></div>
<!--
This test page is used when testing initial URLs of the form
http://domain/path/to/page1.html#/path/to/page2.html. It really only works if
you load sequence-tests.html via the hash, i.e.,
http://domain/path/to/sequence/index.html#/path/to/sequence-redirect.html
-->
</body>
</html>
|
uploads/index.html | chrislarrycarl/Helios-Calendar | <html><head><title></title><META HTTP-EQUIV="Refresh" CONTENT="0; URL=../"></head><body></body></html> |
tests/wpt/web-platform-tests/css/css-grid/grid-definition/grid-inline-auto-repeat-001.html | anthgur/servo | <!DOCTYPE html>
<html lang=en>
<meta charset="utf-8">
<title>CSS Grid Layout Test: auto repeat tracks in indefinite containers with minimum size</title>
<link rel="author" title="Sergio Villar Senin" href="mailto:svillar@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#repeat-syntax">
<meta name="assert" content="This test checks that we properly compute the number of required auto repeat tracks in indefinite sized containers with minimum sizes.">
<link rel="stylesheet" href="support/grid.css">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="support/testing-utils.js"></script>
<style>
.grid {
display: inline-grid;
grid: 20px / 20px;
min-width: 20px;
min-height: 20px;
justify-content: start;
align-content: start;
}
</style>
<div id="log"></div>
<div id="autoFillColumns" class="grid"></div>
<div id="autoFitColumns" class="grid"></div>
<div id="autoFillRows" class="grid"></div>
<div id="autoFitRows" class="grid"></div>
<script>
// Exact fit
TestingUtils.testGridTemplateColumnsRows("autoFillColumns", "repeat(auto-fill, 10px)", "20px", ["repeat(2, 10px)", "10px 10px"], "20px");
TestingUtils.testGridTemplateColumnsRows("autoFitColumns", "repeat(auto-fit, 10px)", "20px", ["repeat(2, 0px)", "0px 0px"], "20px");
TestingUtils.testGridTemplateColumnsRows("autoFillRows", "20px", "repeat(auto-fill, 10px)", "20px", ["repeat(2, 10px)", "10px 10px"]);
TestingUtils.testGridTemplateColumnsRows("autoFitRows", "20px", "repeat(auto-fit, 10px)", "20px", ["repeat(2, 0px)", "0px 0px"]);
// Require an extra track
TestingUtils.testGridTemplateColumnsRows("autoFillColumns", "repeat(auto-fill, 9px)", "20px", ["repeat(3, 9px)", "9px 9px 9px"], "20px");
TestingUtils.testGridTemplateColumnsRows("autoFitColumns", "repeat(auto-fit, 9px)", "20px", ["repeat(2, 0px)", "0px 0px"], "20px");
TestingUtils.testGridTemplateColumnsRows("autoFillRows", "20px", "repeat(auto-fill, 9px)", "20px", ["repeat(3, 9px)", "9px 9px 9px"]);
TestingUtils.testGridTemplateColumnsRows("autoFitRows", "20px", "repeat(auto-fit, 9px)", "20px", ["repeat(3, 0px)", "0px 0px 0px"]);
// A single repetition is enough to fill in all the available space
TestingUtils.testGridTemplateColumnsRows("autoFillColumns", "repeat(auto-fill, 30px)", "20px", "30px", "20px");
TestingUtils.testGridTemplateColumnsRows("autoFitColumns", "repeat(auto-fit, 30px)", "20px", "0px", "20px");
TestingUtils.testGridTemplateColumnsRows("autoFillRows", "20px", "repeat(auto-fill, 30px)", "20px", "30px");
TestingUtils.testGridTemplateColumnsRows("autoFitRows", "20px", "repeat(auto-fit, 30px)", "20px", "0px");
</script>
|
tests/wpt/web-platform-tests/css/work-in-progress/ttwf_shanghai/Zourui/reference/background-color-transparent.html | shinglyu/servo | <!DOCTYPE html>
<html>
<head>
<title>Background-origin Test</title>
<link rel="author" title="Jacky Xiao" href="mailto:foot3188@aliyun.com">
<link rel="reviewer" title="" href="">
<link rel="help" href="http://www.w3.org/TR/compositing-1/">
<link rel="match" href="reference/rotateY-ref.html">
<meta name="assert" content="There is a green background and white padding.">
<style type="text/css">
.yellowSquare {
width:240px;
height:240px;
padding:10px;
background-image:url(../support/bg_flower.gif);
background-repeat:no-repeat;
}
</style>
</head>
<body>
<p>The test passes if there is a yellow background.</p>
<div class="yellowSquare"></div>
</div>
</body>
</html>
|
third_party/blink/web_tests/external/wpt/css/css-text/word-boundary/word-boundary-010.html | scheib/chromium | <!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Text level 4 Test: word-boundary-expansion and forced line breaks</title>
<link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/">
<link rel="help" href="https://drafts.csswg.org/css-text-4/#word-boundary-expansion">
<link rel="match" href="reference/word-boundary-010-ref.html">
<meta name="assert" content="must not replace instances of U+200B immediately preceding or following a forced line break (ignoring any intervening inline box boundaries, and associated margin/border/padding)">
<style>
div {
font-size: 2em;
border: solid blue;
float: left;
margin: 1px;
}
.pad { padding: 0 1em; }
.spad { padding: 0 0.5em; }
.margin { margin: 0 1em; }
.smargin { margin: 0 0.5em; }
.border { border: solid transparent; border-width: 0 1em; }
.sborder { border: solid transparent; border-width: 0 0.5em; }
.test {
word-boundary-expansion: ideographic-space;
}
</style>
<p>Test passes if the all boxes below are identical.
<div class="test pad"><wbr>あ<wbr>い<wbr></div>
<div class="test pad">​あ​い​</div>
<div class="test pad"><span><wbr>あ<wbr>い<wbr><span></div>
<div class="test pad"><span>​あ​い​</span></div>
<div class="test pad"><span></span><wbr>あ<wbr>い<wbr><span></span></div>
<div class="test pad"><span></span>​あ​い​<span></span></div>
<div class="test"><span class=pad><wbr>あ<wbr>い<wbr><span></div>
<div class="test"><span class=pad>​あ​い​</span></div>
<div class="test"><span class=spad></span><wbr>あ<wbr>い<wbr><span class=spad></span></div>
<div class="test"><span class=spad></span>​あ​い​<span class=spad></span></div>
<div class="test"><span class=margin><wbr>あ<wbr>い<wbr><span></div>
<div class="test"><span class=margin>​あ​い​</span></div>
<div class="test"><span class=smargin></span><wbr>あ<wbr>い<wbr><span class=smargin></span></div>
<div class="test"><span class=smargin></span>​あ​い​<span class=smargin></span></div>
<div class="test"><span class=border><wbr>あ<wbr>い<wbr><span></div>
<div class="test"><span class=border>​あ​い​</span></div>
<div class="test"><span class=sborder></span><wbr>あ<wbr>い<wbr><span class=sborder></span></div>
<div class="test"><span class=sborder></span>​あ​い​<span class=sborder></span></div>
<div id=ref class=pad>あ い</div>
|
phaser/docs/src_gameobjects_RetroFont.js.html | Bamboo3000/krakjam | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Phaser Source: src/gameobjects/RetroFont.js</title>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/default.css">
<link type="text/css" rel="stylesheet" href="styles/sunlight.default.css">
<link type="text/css" rel="stylesheet" href="styles/site.cerulean.css">
</head>
<body>
<div class="container-fluid">
<div class="navbar navbar-fixed-top navbar-inverse">
<div style="position: absolute; width: 143px; height: 31px; right: 10px; top: 10px; z-index: 1050"><a href="http://phaser.io"><img src="img/phaser.png" border="0" /></a></div>
<div class="navbar-inner">
<a class="brand" href="index.html">Phaser API</a>
<ul class="nav">
<li class="dropdown">
<a href="namespaces.list.html" class="dropdown-toggle" data-toggle="dropdown">Namespaces<b
class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-0">
<a href="Phaser.html">Phaser</a>
</li>
<li class="class-depth-0">
<a href="Phaser.KeyCode.html">KeyCode</a>
</li>
<li class="class-depth-0">
<a href="PIXI.html">PIXI</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="classes.list.html" class="dropdown-toggle" data-toggle="dropdown">Classes<b
class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1">
<a href="Phaser.Animation.html">Animation</a>
</li>
<li class="class-depth-1">
<a href="Phaser.AnimationManager.html">AnimationManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.AnimationParser.html">AnimationParser</a>
</li>
<li class="class-depth-1">
<a href="Phaser.ArraySet.html">ArraySet</a>
</li>
<li class="class-depth-1">
<a href="Phaser.ArrayUtils.html">ArrayUtils</a>
</li>
<li class="class-depth-1">
<a href="Phaser.AudioSprite.html">AudioSprite</a>
</li>
<li class="class-depth-1">
<a href="Phaser.BitmapData.html">BitmapData</a>
</li>
<li class="class-depth-1">
<a href="Phaser.BitmapText.html">BitmapText</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Button.html">Button</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Cache.html">Cache</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Camera.html">Camera</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Canvas.html">Canvas</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Circle.html">Circle</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Color.html">Color</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Angle.html">Angle</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Animation.html">Animation</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.AutoCull.html">AutoCull</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Bounds.html">Bounds</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.BringToTop.html">BringToTop</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Core.html">Core</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Crop.html">Crop</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Delta.html">Delta</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Destroy.html">Destroy</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.FixedToCamera.html">FixedToCamera</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Health.html">Health</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.InCamera.html">InCamera</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.InputEnabled.html">InputEnabled</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.InWorld.html">InWorld</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.LifeSpan.html">LifeSpan</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.LoadTexture.html">LoadTexture</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Overlap.html">Overlap</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.PhysicsBody.html">PhysicsBody</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Reset.html">Reset</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.ScaleMinMax.html">ScaleMinMax</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Smoothed.html">Smoothed</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Create.html">Create</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Creature.html">Creature</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Device.html">Device</a>
</li>
<li class="class-depth-1">
<a href="Phaser.DeviceButton.html">DeviceButton</a>
</li>
<li class="class-depth-1">
<a href="Phaser.DOM.html">DOM</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Easing.html">Easing</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Back.html">Back</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Bounce.html">Bounce</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Circular.html">Circular</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Cubic.html">Cubic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Elastic.html">Elastic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Exponential.html">Exponential</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Linear.html">Linear</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Quadratic.html">Quadratic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Quartic.html">Quartic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Quintic.html">Quintic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Sinusoidal.html">Sinusoidal</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Ellipse.html">Ellipse</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Events.html">Events</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Filter.html">Filter</a>
</li>
<li class="class-depth-1">
<a href="Phaser.FlexGrid.html">FlexGrid</a>
</li>
<li class="class-depth-1">
<a href="Phaser.FlexLayer.html">FlexLayer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Frame.html">Frame</a>
</li>
<li class="class-depth-1">
<a href="Phaser.FrameData.html">FrameData</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Game.html">Game</a>
</li>
<li class="class-depth-1">
<a href="Phaser.GameObjectCreator.html">GameObjectCreator</a>
</li>
<li class="class-depth-1">
<a href="Phaser.GameObjectFactory.html">GameObjectFactory</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Gamepad.html">Gamepad</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Graphics.html">Graphics</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Group.html">Group</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Image.html">Image</a>
</li>
<li class="class-depth-1">
<a href="Phaser.ImageCollection.html">ImageCollection</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Input.html">Input</a>
</li>
<li class="class-depth-1">
<a href="Phaser.InputHandler.html">InputHandler</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Key.html">Key</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Keyboard.html">Keyboard</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Line.html">Line</a>
</li>
<li class="class-depth-1">
<a href="Phaser.LinkedList.html">LinkedList</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Loader.html">Loader</a>
</li>
<li class="class-depth-1">
<a href="Phaser.LoaderParser.html">LoaderParser</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Math.html">Math</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Matrix.html">Matrix</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Mouse.html">Mouse</a>
</li>
<li class="class-depth-1">
<a href="Phaser.MSPointer.html">MSPointer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Net.html">Net</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Particle.html">Particle</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Particles.html">Particles</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Particles.Arcade.html">Arcade</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Particles.Arcade.Emitter.html">Emitter</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Physics.html">Physics</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Physics.Arcade.html">Arcade</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Arcade.Body.html">Body</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Arcade.TilemapCollision.html">TilemapCollision</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Physics.Ninja.html">Ninja</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Ninja.AABB.html">AABB</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Ninja.Body.html">Body</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Ninja.Circle.html">Circle</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Ninja.Tile.html">Tile</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Physics.P2.html">P2</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.Body.html">Body</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.BodyDebug.html">BodyDebug</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.CollisionGroup.html">CollisionGroup</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.ContactMaterial.html">ContactMaterial</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.DistanceConstraint.html">DistanceConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.FixtureList.html">FixtureList</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.GearConstraint.html">GearConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.InversePointProxy.html">InversePointProxy</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.LockConstraint.html">LockConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.Material.html">Material</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.PointProxy.html">PointProxy</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.PrismaticConstraint.html">PrismaticConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.RevoluteConstraint.html">RevoluteConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.RotationalSpring.html">RotationalSpring</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.Spring.html">Spring</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Plugin.html">Plugin</a>
</li>
<li class="class-depth-1">
<a href="Phaser.PluginManager.html">PluginManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Point.html">Point</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Pointer.html">Pointer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.PointerMode.html">PointerMode</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Polygon.html">Polygon</a>
</li>
<li class="class-depth-1">
<a href="Phaser.QuadTree.html">QuadTree</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RandomDataGenerator.html">RandomDataGenerator</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Rectangle.html">Rectangle</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RenderTexture.html">RenderTexture</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RequestAnimationFrame.html">RequestAnimationFrame</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RetroFont.html">RetroFont</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Rope.html">Rope</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RoundedRectangle.html">RoundedRectangle</a>
</li>
<li class="class-depth-1">
<a href="Phaser.ScaleManager.html">ScaleManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Signal.html">Signal</a>
</li>
<li class="class-depth-1">
<a href="Phaser.SignalBinding.html">SignalBinding</a>
</li>
<li class="class-depth-1">
<a href="Phaser.SinglePad.html">SinglePad</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Sound.html">Sound</a>
</li>
<li class="class-depth-1">
<a href="Phaser.SoundManager.html">SoundManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Sprite.html">Sprite</a>
</li>
<li class="class-depth-1">
<a href="Phaser.SpriteBatch.html">SpriteBatch</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Stage.html">Stage</a>
</li>
<li class="class-depth-1">
<a href="Phaser.State.html">State</a>
</li>
<li class="class-depth-1">
<a href="Phaser.StateManager.html">StateManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Text.html">Text</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Tile.html">Tile</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Tilemap.html">Tilemap</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TilemapLayer.html">TilemapLayer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TilemapParser.html">TilemapParser</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Tileset.html">Tileset</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TileSprite.html">TileSprite</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Time.html">Time</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Timer.html">Timer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TimerEvent.html">TimerEvent</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Touch.html">Touch</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Tween.html">Tween</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TweenData.html">TweenData</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TweenManager.html">TweenManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Utils.html">Utils</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Utils.Debug.html">Debug</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Video.html">Video</a>
</li>
<li class="class-depth-1">
<a href="Phaser.World.html">World</a>
</li>
<li class="class-depth-1">
<a href="PIXI.AbstractFilter.html">AbstractFilter</a>
</li>
<li class="class-depth-1">
<a href="PIXI.BaseTexture.html">BaseTexture</a>
</li>
<li class="class-depth-1">
<a href="PIXI.CanvasBuffer.html">CanvasBuffer</a>
</li>
<li class="class-depth-1">
<a href="PIXI.CanvasGraphics.html">CanvasGraphics</a>
</li>
<li class="class-depth-1">
<a href="PIXI.CanvasMaskManager.html">CanvasMaskManager</a>
</li>
<li class="class-depth-1">
<a href="PIXI.CanvasPool.html">CanvasPool</a>
</li>
<li class="class-depth-1">
<a href="PIXI.CanvasRenderer.html">CanvasRenderer</a>
</li>
<li class="class-depth-1">
<a href="PIXI.CanvasTinter.html">CanvasTinter</a>
</li>
<li class="class-depth-1">
<a href="PIXI.ComplexPrimitiveShader.html">ComplexPrimitiveShader</a>
</li>
<li class="class-depth-1">
<a href="PIXI.DisplayObject.html">DisplayObject</a>
</li>
<li class="class-depth-1">
<a href="PIXI.DisplayObjectContainer.html">DisplayObjectContainer</a>
</li>
<li class="class-depth-1">
<a href="PIXI.Event.html">Event</a>
</li>
<li class="class-depth-1">
<a href="PIXI.EventTarget.html">EventTarget</a>
</li>
<li class="class-depth-1">
<a href="PIXI.FilterTexture.html">FilterTexture</a>
</li>
<li class="class-depth-1">
<a href="PIXI.Graphics.html">Graphics</a>
</li>
<li class="class-depth-1">
<a href="PIXI.GraphicsData.html">GraphicsData</a>
</li>
<li class="class-depth-1">
<a href="PIXI.PIXI.html">PIXI</a>
</li>
<li class="class-depth-1">
<a href="PIXI.PixiFastShader.html">PixiFastShader</a>
</li>
<li class="class-depth-1">
<a href="PIXI.PixiShader.html">PixiShader</a>
</li>
<li class="class-depth-1">
<a href="PIXI.PolyK.html">PolyK</a>
</li>
<li class="class-depth-1">
<a href="PIXI.PrimitiveShader.html">PrimitiveShader</a>
</li>
<li class="class-depth-1">
<a href="PIXI.RenderTexture.html">RenderTexture</a>
</li>
<li class="class-depth-1">
<a href="PIXI.Rope.html">Rope</a>
</li>
<li class="class-depth-1">
<a href="PIXI.Sprite.html">Sprite</a>
</li>
<li class="class-depth-1">
<a href="PIXI.SpriteBatch.html">SpriteBatch</a>
</li>
<li class="class-depth-1">
<a href="PIXI.Strip.html">Strip</a>
</li>
<li class="class-depth-1">
<a href="PIXI.StripShader.html">StripShader</a>
</li>
<li class="class-depth-1">
<a href="PIXI.Texture.html">Texture</a>
</li>
<li class="class-depth-1">
<a href="PIXI.TilingSprite.html">TilingSprite</a>
</li>
<li class="class-depth-1">
<a href="PIXI.WebGLBlendModeManager.html">WebGLBlendModeManager</a>
</li>
<li class="class-depth-1">
<a href="PIXI.WebGLFastSpriteBatch.html">WebGLFastSpriteBatch</a>
</li>
<li class="class-depth-1">
<a href="PIXI.WebGLFilterManager.html">WebGLFilterManager</a>
</li>
<li class="class-depth-1">
<a href="PIXI.WebGLRenderer.html">WebGLRenderer</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="global.html" class="dropdown-toggle" data-toggle="dropdown">Global<b
class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-0">
<a href="global.html#AUTO">AUTO</a>
</li>
<li class="class-depth-0">
<a href="global.html#BITMAPDATA">BITMAPDATA</a>
</li>
<li class="class-depth-0">
<a href="global.html#BITMAPTEXT">BITMAPTEXT</a>
</li>
<li class="class-depth-0">
<a href="global.html#blendModes">blendModes</a>
</li>
<li class="class-depth-0">
<a href="global.html#BUTTON">BUTTON</a>
</li>
<li class="class-depth-0">
<a href="global.html#CANVAS">CANVAS</a>
</li>
<li class="class-depth-0">
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
</li>
<li class="class-depth-0">
<a href="global.html#CIRCLE">CIRCLE</a>
</li>
<li class="class-depth-0">
<a href="global.html#CREATURE">CREATURE</a>
</li>
<li class="class-depth-0">
<a href="global.html#DOWN">DOWN</a>
</li>
<li class="class-depth-0">
<a href="global.html#ELLIPSE">ELLIPSE</a>
</li>
<li class="class-depth-0">
<a href="global.html#EMITTER">EMITTER</a>
</li>
<li class="class-depth-0">
<a href="global.html#GAMES">GAMES</a>
</li>
<li class="class-depth-0">
<a href="global.html#GRAPHICS">GRAPHICS</a>
</li>
<li class="class-depth-0">
<a href="global.html#GROUP">GROUP</a>
</li>
<li class="class-depth-0">
<a href="global.html#HEADLESS">HEADLESS</a>
</li>
<li class="class-depth-0">
<a href="global.html#IMAGE">IMAGE</a>
</li>
<li class="class-depth-0">
<a href="global.html#LEFT">LEFT</a>
</li>
<li class="class-depth-0">
<a href="global.html#LINE">LINE</a>
</li>
<li class="class-depth-0">
<a href="global.html#MATRIX">MATRIX</a>
</li>
<li class="class-depth-0">
<a href="global.html#NONE">NONE</a>
</li>
<li class="class-depth-0">
<a href="global.html#POINT">POINT</a>
</li>
<li class="class-depth-0">
<a href="global.html#POINTER">POINTER</a>
</li>
<li class="class-depth-0">
<a href="global.html#POLYGON">POLYGON</a>
</li>
<li class="class-depth-0">
<a href="global.html#RECTANGLE">RECTANGLE</a>
</li>
<li class="class-depth-0">
<a href="global.html#RENDERTEXTURE">RENDERTEXTURE</a>
</li>
<li class="class-depth-0">
<a href="global.html#RETROFONT">RETROFONT</a>
</li>
<li class="class-depth-0">
<a href="global.html#RIGHT">RIGHT</a>
</li>
<li class="class-depth-0">
<a href="global.html#ROPE">ROPE</a>
</li>
<li class="class-depth-0">
<a href="global.html#ROUNDEDRECTANGLE">ROUNDEDRECTANGLE</a>
</li>
<li class="class-depth-0">
<a href="global.html#scaleModes">scaleModes</a>
</li>
<li class="class-depth-0">
<a href="global.html#SPRITE">SPRITE</a>
</li>
<li class="class-depth-0">
<a href="global.html#SPRITEBATCH">SPRITEBATCH</a>
</li>
<li class="class-depth-0">
<a href="global.html#TEXT">TEXT</a>
</li>
<li class="class-depth-0">
<a href="global.html#TILEMAP">TILEMAP</a>
</li>
<li class="class-depth-0">
<a href="global.html#TILEMAPLAYER">TILEMAPLAYER</a>
</li>
<li class="class-depth-0">
<a href="global.html#TILESPRITE">TILESPRITE</a>
</li>
<li class="class-depth-0">
<a href="global.html#UP">UP</a>
</li>
<li class="class-depth-0">
<a href="global.html#VERSION">VERSION</a>
</li>
<li class="class-depth-0">
<a href="global.html#VIDEO">VIDEO</a>
</li>
<li class="class-depth-0">
<a href="global.html#WEBGL">WEBGL</a>
</li>
<li class="class-depth-0">
<a href="global.html#WEBGL_FILTER">WEBGL_FILTER</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Core<b class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1"><a href="Phaser.Game.html">Game</a></li>
<li class="class-depth-1"><a href="Phaser.Group.html">Group</a></li>
<li class="class-depth-1"><a href="Phaser.World.html">World</a></li>
<li class="class-depth-1"><a href="Phaser.Loader.html">Loader</a></li>
<li class="class-depth-1"><a href="Phaser.Cache.html">Cache</a></li>
<li class="class-depth-1"><a href="Phaser.Time.html">Time</a></li>
<li class="class-depth-1"><a href="Phaser.Camera.html">Camera</a></li>
<li class="class-depth-1"><a href="Phaser.StateManager.html">State Manager</a></li>
<li class="class-depth-1"><a href="Phaser.TweenManager.html">Tween Manager</a></li>
<li class="class-depth-1"><a href="Phaser.SoundManager.html">Sound Manager</a></li>
<li class="class-depth-1"><a href="Phaser.Input.html">Input Manager</a></li>
<li class="class-depth-1"><a href="Phaser.ScaleManager.html">Scale Manager</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Game Objects<b class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1"><a href="Phaser.GameObjectFactory.html">Factory (game.add)</a></li>
<li class="class-depth-1"><a href="Phaser.GameObjectCreator.html">Creator (game.make)</a></li>
<li class="class-depth-1"><a href="Phaser.Sprite.html">Sprite</a></li>
<li class="class-depth-1"><a href="Phaser.Image.html">Image</a></li>
<li class="class-depth-1"><a href="Phaser.Sound.html">Sound</a></li>
<li class="class-depth-1"><a href="Phaser.Video.html">Video</a></li>
<li class="class-depth-1"><a href="Phaser.Particles.Arcade.Emitter.html">Particle Emitter</a></li>
<li class="class-depth-1"><a href="Phaser.Particle.html">Particle</a></li>
<li class="class-depth-1"><a href="Phaser.Text.html">Text</a></li>
<li class="class-depth-1"><a href="Phaser.Tween.html">Tween</a></li>
<li class="class-depth-1"><a href="Phaser.BitmapText.html">BitmapText</a></li>
<li class="class-depth-1"><a href="Phaser.Tilemap.html">Tilemap</a></li>
<li class="class-depth-1"><a href="Phaser.BitmapData.html">BitmapData</a></li>
<li class="class-depth-1"><a href="Phaser.RetroFont.html">RetroFont</a></li>
<li class="class-depth-1"><a href="Phaser.Button.html">Button</a></li>
<li class="class-depth-1"><a href="Phaser.Animation.html">Animation</a></li>
<li class="class-depth-1"><a href="Phaser.Graphics.html">Graphics</a></li>
<li class="class-depth-1"><a href="Phaser.RenderTexture.html">RenderTexture</a></li>
<li class="class-depth-1"><a href="Phaser.TileSprite.html">TileSprite</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Geometry<b class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1"><a href="Phaser.Circle.html">Circle</a></li>
<li class="class-depth-1"><a href="Phaser.Ellipse.html">Ellipse</a></li>
<li class="class-depth-1"><a href="Phaser.Line.html">Line</a></li>
<li class="class-depth-1"><a href="Phaser.Matrix.html">Matrix</a></li>
<li class="class-depth-1"><a href="Phaser.Point.html">Point</a></li>
<li class="class-depth-1"><a href="Phaser.Polygon.html">Polygon</a></li>
<li class="class-depth-1"><a href="Phaser.Rectangle.html">Rectangle</a></li>
<li class="class-depth-1"><a href="Phaser.RoundedRectangle.html">Rounded Rectangle</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Physics<b class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
<li class="class-depth-2"><a href="Phaser.Physics.P2.CollisionGroup.html">CollisionGroup</a></li>
<li class="class-depth-2"><a href="Phaser.Physics.P2.ContactMaterial.html">ContactMaterial</a></li>
<li class="class-depth-1"><a href="Phaser.Physics.Ninja.html">Ninja Physics</a></li>
<li class="class-depth-2"><a href="Phaser.Physics.Body.html">Body</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Input<b class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1"><a href="Phaser.InputHandler.html">Input Handler</a></li>
<li class="class-depth-1"><a href="Phaser.Pointer.html">Pointer</a></li>
<li class="class-depth-1"><a href="Phaser.DeviceButton.html">Device Button</a></li>
<li class="class-depth-1"><a href="Phaser.Mouse.html">Mouse</a></li>
<li class="class-depth-1"><a href="Phaser.Keyboard.html">Keyboard</a></li>
<li class="class-depth-1"><a href="Phaser.Key.html">Key</a></li>
<li class="class-depth-1"><a href="Phaser.Gamepad.html">Gamepad</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Community<b class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1"><a href="http://phaser.io">Phaser Web Site</a></li>
<li class="class-depth-1"><a href="https://github.com/photonstorm/phaser">Phaser Github</a></li>
<li class="class-depth-1"><a href="http://phaser.io/examples">Phaser Examples</a></li>
<li class="class-depth-1"><a href="https://github.com/photonstorm/phaser-plugins">Phaser Plugins</a></li>
<li class="class-depth-1"><a href="http://www.html5gamedevs.com/forum/14-phaser/">Forum</a></li>
<li class="class-depth-1"><a href="http://stackoverflow.com/questions/tagged/phaser-framework">Stack Overflow</a></li>
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
<li class="class-depth-1"><a href="https://confirmsubscription.com/h/r/369DE48E3E86AF1E">Newsletter</a></li>
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
<li class="class-depth-1"><a href="http://phaser.io/community/irc">IRC</a></li>
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="row-fluid">
<div class="span12">
<div id="main">
<h1 class="page-title">Source: src/gameobjects/RetroFont.js</h1>
<section>
<article>
<pre class="sunlight-highlight-javascript linenums">/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2015 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
/**
* A Retro Font is similar to a BitmapFont, in that it uses a texture to render the text. However unlike a BitmapFont every character in a RetroFont
* is the same size. This makes it similar to a sprite sheet. You typically find font sheets like this from old 8/16-bit games and demos.
*
* @class Phaser.RetroFont
* @extends Phaser.RenderTexture
* @constructor
* @param {Phaser.Game} game - Current game instance.
* @param {string} key - The font set graphic set as stored in the Game.Cache.
* @param {number} characterWidth - The width of each character in the font set.
* @param {number} characterHeight - The height of each character in the font set.
* @param {string} chars - The characters used in the font set, in display order. You can use the TEXT_SET consts for common font set arrangements.
* @param {number} [charsPerRow] - The number of characters per row in the font set. If not given charsPerRow will be the image width / characterWidth.
* @param {number} [xSpacing=0] - If the characters in the font set have horizontal spacing between them set the required amount here.
* @param {number} [ySpacing=0] - If the characters in the font set have vertical spacing between them set the required amount here.
* @param {number} [xOffset=0] - If the font set doesn't start at the top left of the given image, specify the X coordinate offset here.
* @param {number} [yOffset=0] - If the font set doesn't start at the top left of the given image, specify the Y coordinate offset here.
*/
Phaser.RetroFont = function (game, key, characterWidth, characterHeight, chars, charsPerRow, xSpacing, ySpacing, xOffset, yOffset) {
if (!game.cache.checkImageKey(key))
{
return false;
}
if (charsPerRow === undefined || charsPerRow === null)
{
charsPerRow = game.cache.getImage(key).width / characterWidth;
}
/**
* @property {number} characterWidth - The width of each character in the font set.
*/
this.characterWidth = characterWidth;
/**
* @property {number} characterHeight - The height of each character in the font set.
*/
this.characterHeight = characterHeight;
/**
* @property {number} characterSpacingX - If the characters in the font set have horizontal spacing between them set the required amount here.
*/
this.characterSpacingX = xSpacing || 0;
/**
* @property {number} characterSpacingY - If the characters in the font set have vertical spacing between them set the required amount here.
*/
this.characterSpacingY = ySpacing || 0;
/**
* @property {number} characterPerRow - The number of characters per row in the font set.
*/
this.characterPerRow = charsPerRow;
/**
* @property {number} offsetX - If the font set doesn't start at the top left of the given image, specify the X coordinate offset here.
* @readonly
*/
this.offsetX = xOffset || 0;
/**
* @property {number} offsetY - If the font set doesn't start at the top left of the given image, specify the Y coordinate offset here.
* @readonly
*/
this.offsetY = yOffset || 0;
/**
* @property {string} align - Alignment of the text when multiLine = true or a fixedWidth is set. Set to RetroFont.ALIGN_LEFT (default), RetroFont.ALIGN_RIGHT or RetroFont.ALIGN_CENTER.
*/
this.align = "left";
/**
* @property {boolean} multiLine - If set to true all carriage-returns in text will form new lines (see align). If false the font will only contain one single line of text (the default)
* @default
*/
this.multiLine = false;
/**
* @property {boolean} autoUpperCase - Automatically convert any text to upper case. Lots of old bitmap fonts only contain upper-case characters, so the default is true.
* @default
*/
this.autoUpperCase = true;
/**
* @property {number} customSpacingX - Adds horizontal spacing between each character of the font, in pixels.
* @default
*/
this.customSpacingX = 0;
/**
* @property {number} customSpacingY - Adds vertical spacing between each line of multi-line text, set in pixels.
* @default
*/
this.customSpacingY = 0;
/**
* If you need this RetroFont image to have a fixed width you can set the width in this value.
* If text is wider than the width specified it will be cropped off.
* @property {number} fixedWidth
*/
this.fixedWidth = 0;
/**
* @property {Image} fontSet - A reference to the image stored in the Game.Cache that contains the font.
*/
this.fontSet = game.cache.getImage(key);
/**
* @property {string} _text - The text of the font image.
* @private
*/
this._text = '';
/**
* @property {array} grabData - An array of rects for faster character pasting.
* @private
*/
this.grabData = [];
/**
* @property {Phaser.FrameData} frameData - The FrameData representing this Retro Font.
*/
this.frameData = new Phaser.FrameData();
// Now generate our rects for faster copying later on
var currentX = this.offsetX;
var currentY = this.offsetY;
var r = 0;
for (var c = 0; c < chars.length; c++)
{
var frame = this.frameData.addFrame(new Phaser.Frame(c, currentX, currentY, this.characterWidth, this.characterHeight));
this.grabData[chars.charCodeAt(c)] = frame.index;
r++;
if (r === this.characterPerRow)
{
r = 0;
currentX = this.offsetX;
currentY += this.characterHeight + this.characterSpacingY;
}
else
{
currentX += this.characterWidth + this.characterSpacingX;
}
}
game.cache.updateFrameData(key, this.frameData);
/**
* @property {Phaser.Image} stamp - The image that is stamped to the RenderTexture for each character in the font.
* @readonly
*/
this.stamp = new Phaser.Image(game, 0, 0, key, 0);
Phaser.RenderTexture.call(this, game, 100, 100, '', Phaser.scaleModes.NEAREST);
/**
* @property {number} type - Base Phaser object type.
*/
this.type = Phaser.RETROFONT;
};
Phaser.RetroFont.prototype = Object.create(Phaser.RenderTexture.prototype);
Phaser.RetroFont.prototype.constructor = Phaser.RetroFont;
/**
* Align each line of multi-line text to the left.
* @constant
* @type {string}
*/
Phaser.RetroFont.ALIGN_LEFT = "left";
/**
* Align each line of multi-line text to the right.
* @constant
* @type {string}
*/
Phaser.RetroFont.ALIGN_RIGHT = "right";
/**
* Align each line of multi-line text in the center.
* @constant
* @type {string}
*/
Phaser.RetroFont.ALIGN_CENTER = "center";
/**
* Text Set 1 = !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~
* @constant
* @type {string}
*/
Phaser.RetroFont.TEXT_SET1 = " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~";
/**
* Text Set 2 = !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ
* @constant
* @type {string}
*/
Phaser.RetroFont.TEXT_SET2 = " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ";
/**
* Text Set 3 = ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
* @constant
* @type {string}
*/
Phaser.RetroFont.TEXT_SET3 = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 ";
/**
* Text Set 4 = ABCDEFGHIJKLMNOPQRSTUVWXYZ 0123456789
* @constant
* @type {string}
*/
Phaser.RetroFont.TEXT_SET4 = "ABCDEFGHIJKLMNOPQRSTUVWXYZ 0123456789";
/**
* Text Set 5 = ABCDEFGHIJKLMNOPQRSTUVWXYZ.,/() '!?-*:0123456789
* @constant
* @type {string}
*/
Phaser.RetroFont.TEXT_SET5 = "ABCDEFGHIJKLMNOPQRSTUVWXYZ.,/() '!?-*:0123456789";
/**
* Text Set 6 = ABCDEFGHIJKLMNOPQRSTUVWXYZ!?:;0123456789"(),-.'
* @constant
* @type {string}
*/
Phaser.RetroFont.TEXT_SET6 = "ABCDEFGHIJKLMNOPQRSTUVWXYZ!?:;0123456789\"(),-.' ";
/**
* Text Set 7 = AGMSY+:4BHNTZ!;5CIOU.?06DJPV,(17EKQW")28FLRX-'39
* @constant
* @type {string}
*/
Phaser.RetroFont.TEXT_SET7 = "AGMSY+:4BHNTZ!;5CIOU.?06DJPV,(17EKQW\")28FLRX-'39";
/**
* Text Set 8 = 0123456789 .ABCDEFGHIJKLMNOPQRSTUVWXYZ
* @constant
* @type {string}
*/
Phaser.RetroFont.TEXT_SET8 = "0123456789 .ABCDEFGHIJKLMNOPQRSTUVWXYZ";
/**
* Text Set 9 = ABCDEFGHIJKLMNOPQRSTUVWXYZ()-0123456789.:,'"?!
* @constant
* @type {string}
*/
Phaser.RetroFont.TEXT_SET9 = "ABCDEFGHIJKLMNOPQRSTUVWXYZ()-0123456789.:,'\"?!";
/**
* Text Set 10 = ABCDEFGHIJKLMNOPQRSTUVWXYZ
* @constant
* @type {string}
*/
Phaser.RetroFont.TEXT_SET10 = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
/**
* Text Set 11 = ABCDEFGHIJKLMNOPQRSTUVWXYZ.,"-+!?()':;0123456789
* @constant
* @type {string}
*/
Phaser.RetroFont.TEXT_SET11 = "ABCDEFGHIJKLMNOPQRSTUVWXYZ.,\"-+!?()':;0123456789";
/**
* If you need this RetroFont to have a fixed width and custom alignment you can set the width here.
* If text is wider than the width specified it will be cropped off.
*
* @method Phaser.RetroFont#setFixedWidth
* @memberof Phaser.RetroFont
* @param {number} width - Width in pixels of this RetroFont. Set to zero to disable and re-enable automatic resizing.
* @param {string} [lineAlignment='left'] - Align the text within this width. Set to RetroFont.ALIGN_LEFT (default), RetroFont.ALIGN_RIGHT or RetroFont.ALIGN_CENTER.
*/
Phaser.RetroFont.prototype.setFixedWidth = function (width, lineAlignment) {
if (lineAlignment === undefined) { lineAlignment = 'left'; }
this.fixedWidth = width;
this.align = lineAlignment;
};
/**
* A helper function that quickly sets lots of variables at once, and then updates the text.
*
* @method Phaser.RetroFont#setText
* @memberof Phaser.RetroFont
* @param {string} content - The text of this sprite.
* @param {boolean} [multiLine=false] - Set to true if you want to support carriage-returns in the text and create a multi-line sprite instead of a single line.
* @param {number} [characterSpacing=0] - To add horizontal spacing between each character specify the amount in pixels.
* @param {number} [lineSpacing=0] - To add vertical spacing between each line of text, set the amount in pixels.
* @param {string} [lineAlignment='left'] - Align each line of multi-line text. Set to RetroFont.ALIGN_LEFT, RetroFont.ALIGN_RIGHT or RetroFont.ALIGN_CENTER.
* @param {boolean} [allowLowerCase=false] - Lots of bitmap font sets only include upper-case characters, if yours needs to support lower case then set this to true.
*/
Phaser.RetroFont.prototype.setText = function (content, multiLine, characterSpacing, lineSpacing, lineAlignment, allowLowerCase) {
this.multiLine = multiLine || false;
this.customSpacingX = characterSpacing || 0;
this.customSpacingY = lineSpacing || 0;
this.align = lineAlignment || 'left';
if (allowLowerCase)
{
this.autoUpperCase = false;
}
else
{
this.autoUpperCase = true;
}
if (content.length > 0)
{
this.text = content;
}
};
/**
* Updates the texture with the new text.
*
* @method Phaser.RetroFont#buildRetroFontText
* @memberof Phaser.RetroFont
*/
Phaser.RetroFont.prototype.buildRetroFontText = function () {
var cx = 0;
var cy = 0;
// Clears the textureBuffer
this.clear();
if (this.multiLine)
{
var lines = this._text.split("\n");
if (this.fixedWidth > 0)
{
this.resize(this.fixedWidth, (lines.length * (this.characterHeight + this.customSpacingY)) - this.customSpacingY, true);
}
else
{
this.resize(this.getLongestLine() * (this.characterWidth + this.customSpacingX), (lines.length * (this.characterHeight + this.customSpacingY)) - this.customSpacingY, true);
}
// Loop through each line of text
for (var i = 0; i < lines.length; i++)
{
// Phaser.RetroFont.ALIGN_LEFT
cx = 0;
// This line of text is held in lines[i] - need to work out the alignment
if (this.align === Phaser.RetroFont.ALIGN_RIGHT)
{
cx = this.width - (lines[i].length * (this.characterWidth + this.customSpacingX));
}
else if (this.align === Phaser.RetroFont.ALIGN_CENTER)
{
cx = (this.width / 2) - ((lines[i].length * (this.characterWidth + this.customSpacingX)) / 2);
cx += this.customSpacingX / 2;
}
// Sanity checks
if (cx < 0)
{
cx = 0;
}
this.pasteLine(lines[i], cx, cy, this.customSpacingX);
cy += this.characterHeight + this.customSpacingY;
}
}
else
{
if (this.fixedWidth > 0)
{
this.resize(this.fixedWidth, this.characterHeight, true);
}
else
{
this.resize(this._text.length * (this.characterWidth + this.customSpacingX), this.characterHeight, true);
}
// Phaser.RetroFont.ALIGN_LEFT
cx = 0;
if (this.align === Phaser.RetroFont.ALIGN_RIGHT)
{
cx = this.width - (this._text.length * (this.characterWidth + this.customSpacingX));
}
else if (this.align === Phaser.RetroFont.ALIGN_CENTER)
{
cx = (this.width / 2) - ((this._text.length * (this.characterWidth + this.customSpacingX)) / 2);
cx += this.customSpacingX / 2;
}
// Sanity checks
if (cx < 0)
{
cx = 0;
}
this.pasteLine(this._text, cx, 0, this.customSpacingX);
}
this.requiresReTint = true;
};
/**
* Internal function that takes a single line of text (2nd parameter) and pastes it into the BitmapData at the given coordinates.
* Used by getLine and getMultiLine
*
* @method Phaser.RetroFont#pasteLine
* @memberof Phaser.RetroFont
* @param {string} line - The single line of text to paste.
* @param {number} x - The x coordinate.
* @param {number} y - The y coordinate.
* @param {number} customSpacingX - Custom X spacing.
*/
Phaser.RetroFont.prototype.pasteLine = function (line, x, y, customSpacingX) {
for (var c = 0; c < line.length; c++)
{
// If it's a space then there is no point copying, so leave a blank space
if (line.charAt(c) === " ")
{
x += this.characterWidth + customSpacingX;
}
else
{
// If the character doesn't exist in the font then we don't want a blank space, we just want to skip it
if (this.grabData[line.charCodeAt(c)] >= 0)
{
this.stamp.frame = this.grabData[line.charCodeAt(c)];
this.renderXY(this.stamp, x, y, false);
x += this.characterWidth + customSpacingX;
if (x > this.width)
{
break;
}
}
}
}
};
/**
* Works out the longest line of text in _text and returns its length
*
* @method Phaser.RetroFont#getLongestLine
* @memberof Phaser.RetroFont
* @return {number} The length of the longest line of text.
*/
Phaser.RetroFont.prototype.getLongestLine = function () {
var longestLine = 0;
if (this._text.length > 0)
{
var lines = this._text.split("\n");
for (var i = 0; i < lines.length; i++)
{
if (lines[i].length > longestLine)
{
longestLine = lines[i].length;
}
}
}
return longestLine;
};
/**
* Internal helper function that removes all unsupported characters from the _text String, leaving only characters contained in the font set.
*
* @method Phaser.RetroFont#removeUnsupportedCharacters
* @memberof Phaser.RetroFont
* @protected
* @param {boolean} [stripCR=true] - Should it strip carriage returns as well?
* @return {string} A clean version of the string.
*/
Phaser.RetroFont.prototype.removeUnsupportedCharacters = function (stripCR) {
var newString = "";
for (var c = 0; c < this._text.length; c++)
{
var aChar = this._text[c];
var code = aChar.charCodeAt(0);
if (this.grabData[code] >= 0 || (!stripCR && aChar === "\n"))
{
newString = newString.concat(aChar);
}
}
return newString;
};
/**
* Updates the x and/or y offset that the font is rendered from. This updates all of the texture frames, so be careful how often it is called.
* Note that the values given for the x and y properties are either ADDED to or SUBTRACTED from (if negative) the existing offsetX/Y values of the characters.
* So if the current offsetY is 8 and you want it to start rendering from y16 you would call updateOffset(0, 8) to add 8 to the current y offset.
*
* @method Phaser.RetroFont#updateOffset
* @memberof Phaser.RetroFont
* @param {number} [xOffset=0] - If the font set doesn't start at the top left of the given image, specify the X coordinate offset here.
* @param {number} [yOffset=0] - If the font set doesn't start at the top left of the given image, specify the Y coordinate offset here.
*/
Phaser.RetroFont.prototype.updateOffset = function (x, y) {
if (this.offsetX === x && this.offsetY === y)
{
return;
}
var diffX = x - this.offsetX;
var diffY = y - this.offsetY;
var frames = this.game.cache.getFrameData(this.stamp.key).getFrames();
var i = frames.length;
while (i--)
{
frames[i].x += diffX;
frames[i].y += diffY;
}
this.buildRetroFontText();
};
/**
* @name Phaser.RetroFont#text
* @property {string} text - Set this value to update the text in this sprite. Carriage returns are automatically stripped out if multiLine is false. Text is converted to upper case if autoUpperCase is true.
*/
Object.defineProperty(Phaser.RetroFont.prototype, "text", {
get: function () {
return this._text;
},
set: function (value) {
var newText;
if (this.autoUpperCase)
{
newText = value.toUpperCase();
}
else
{
newText = value;
}
if (newText !== this._text)
{
this._text = newText;
this.removeUnsupportedCharacters(this.multiLine);
this.buildRetroFontText();
}
}
});
/**
* @name Phaser.RetroFont#smoothed
* @property {string} text - Set this value to update the text in this sprite. Carriage returns are automatically stripped out if multiLine is false. Text is converted to upper case if autoUpperCase is true.
*/
Object.defineProperty(Phaser.RetroFont.prototype, "smoothed", {
get: function () {
return this.stamp.smoothed;
},
set: function (value) {
this.stamp.smoothed = value;
this.buildRetroFontText();
}
});
</pre>
</article>
</section>
</div>
<div class="clearfix"></div>
<footer>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Oct 15 2015 12:04:56 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>
<br clear="both">
</div>
</div>
<script src="scripts/sunlight.js"></script>
<script src="scripts/sunlight.javascript.js"></script>
<script src="scripts/sunlight-plugin.doclinks.js"></script>
<script src="scripts/sunlight-plugin.linenumbers.js"></script>
<script src="scripts/sunlight-plugin.menu.js"></script>
<script src="scripts/jquery.min.js"></script>
<script src="scripts/jquery.scrollTo.js"></script>
<script src="scripts/jquery.localScroll.js"></script>
<script src="scripts/bootstrap-dropdown.js"></script>
<script src="scripts/toc.js"></script>
<script> Sunlight.highlightAll({lineNumbers:true, showMenu: true, enableDoclinks :true}); </script>
<script>
$( function () {
$( "#toc" ).toc( {
anchorName : function(i, heading, prefix) {
return $(heading).attr("id") || ( prefix + i );
},
selectors : "h1,h2,h3,h4",
showAndHide : false,
scrollTo : 60
} );
$( "#toc>ul" ).addClass( "nav nav-pills nav-stacked" );
$( "#main span[id^='toc']" ).addClass( "toc-shim" );
} );
</script>
</body>
</html>
|
wp-content/plugins/pie-register/ckeditor/plugins/imagepaste/docs/install.html | krzysztof-sadowski/wordpress-task | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Image paste plugin</title>
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>Image paste Plugin for CKEditor</h1>
<h2>Introduction</h2>
<p>This is a plugin that automatically uploads to the server the images pasted from the clipboard with Firefox in <a href="http://www.ckeditor.com">CKEditor</a>.</p>
<h3 id="contact">Author:</h3>
<p><a href="mailto:amla70@gmail.com">Alfonso Martínez de Lizarrondo</a></p>
<h3>Version history: </h3>
<ol>
<li>1.0: 28-September-2011. First public version.</li>
<li>1.1: 7-October-2013. Compatibility with CKEditor 4. Sorry to everyone that has tried to use it before, but I didn't realize that it was broken all along as it's a simple fix that I did long ago in the commercial version.<br>
At the same time, I'm removing the useless "webkit-fake-url" crap that Safari generates but that it can't be used for anything.</li>
</ol>
<h2>Installation</h2>
<h3>1. Copying the files</h3>
<p>Extract the contents of the zip in you plugins directory, so it ends up like
this<br>
<!--<img src="installation.png" alt="Screenshot of installation" width="311" height="346" longdesc="#install">-->
</p>
<pre id="--install">
ckeditor\
...
images\
lang\
plugins\
...
imagepaste\
plugin.js
docs\
install.html
...
skins\
themes\
</pre>
<h3>2. Adding it to CKEditor</h3>
<p>Now add the plugin in your <em>config.js</em> or custom js configuration
file:
<code>config.extraPlugins='imagepaste'; </code>
</p>
<h3>3. Configuration</h3>
<p>You have to configure the filebrowserImageUploadUrl entry as you might have already done to allow the user to upload images. You can get a simple script to use as a guide for your code <a href="http://alfonsoml.blogspot.com.es/2013/08/a-basic-upload-script-for-ckeditor.html">in this post in my blog</a>.</p>
<h3>4. Use it</h3>
<p>Using Firefox, paste an image into the body of CKEditor. That image will be uploaded to the server and it will use the correct URL instead of "data:".</p>
<!--
<h2>Final notes</h2>
-->
<h2>Disclaimers</h2>
<p>CKEditor is © CKSource.com</p>
</body>
</html>
|
wp-includes/js/mediaelement/wp-mediaelement.css | radogado/chinaembassy | .mejs-container, .mejs-embed, .mejs-embed body {
background: #464646;
}
.mejs-controls .mejs-time-rail .mejs-time-loaded {
background: #21759b;
}
.mejs-controls .mejs-time-rail .mejs-time-current {
background: #d54e21;
} |
tests/ref/pixel_snapping_border_a.html | apechimp/servo | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pixel snapping border test</title>
<style>
div {
height: 101px;
width: 101px;
border: 0.5px solid black;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
|
third_party/blink/web_tests/external/wpt/css/css-text-decor/reference/text-decoration-skip-ink-upright-001-offset-notref.html | scheib/chromium | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Non-reference case for text-decoration-skip-ink</title>
<style>
div{
text-decoration-skip-ink: auto;
text-decoration: green underline;
writing-mode: vertical-lr;
text-orientation: upright;
text-underline-offset: auto;
}
</style>
</head>
<body>
<p>Test if underline skips the characters</p>
<div>ping pong</div>
</body>
</html>
|
third_party/blink/web_tests/external/wpt/css/css-box/parsing/clear-computed.html | scheib/chromium | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS basic box model: getComputedStyle().clear</title>
<link rel="help" href="https://drafts.csswg.org/css-box-3/#propdef-clear">
<link rel="help" href="https://drafts.csswg.org/css-logical/#float-clear">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
</head>
<body>
<div id="target"></div>
<script>
test_computed_value("clear", "none");
test_computed_value("clear", "left");
test_computed_value("clear", "right");
test_computed_value("clear", "both");
test_computed_value("clear", "inline-start");
test_computed_value("clear", "inline-end");
</script>
</body>
</html>
|
third_party/blink/web_tests/external/wpt/css/css-grid/abspos/positioned-grid-descendants-010.html | scheib/chromium | <!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Positioned grid descendants</title>
<link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid/#abspos" title="9. Absolute Positioning">
<meta name="assert" content="Checks that absolutely positioned elements inside grid items are properly placed and sized when they have specific 'top' and 'bottom' offsets and a static inline position (left/right are 'auto').">
<link rel="stylesheet" href="/fonts/ahem.css">
<link rel="stylesheet" href="support/positioned-grid-descendants.css" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/check-layout-th.js"></script>
<body>
<div id="log"></div>
<script type="module">
import {runTests} from "./support/positioned-grid-descendants.js";
runTests({
left: "auto",
top: 30,
right: "auto",
bottom: 40,
});
</script>
</body>
|
www/js/dojox/gfx/tests/performance/runTests.html | avz-cmf/zaboy-middleware | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Dojox Unit Test Runner</title>
<meta http-equiv="REFRESH" content="0;url=../../../../util/doh/runner.html?testModule=dojox.gfx.tests.performance.module"></HEAD>
<BODY>
Redirecting to D.O.H runner.
</BODY>
</HTML>
|
bundles/servlets/post/src/main/resources/org/apache/sling/servlets/post/HtmlNoGoBackResponse.html | Nimco/sling | <html>
<head>
<title>${title}</title>
</head>
<body>
<h1>${title}</h1>
<table>
<tbody>
<tr>
<td>Status</td>
<td><div id="Status">${status.code}</div></td>
</tr>
<tr>
<td>Message</td>
<td><div id="Message">${status.message}</div></td>
</tr>
<tr>
<td>Location</td>
<td><a href="${location}" id="Location">${location}</a></td>
</tr>
<tr>
<td>Parent Location</td>
<td><a href="${parentLocation}" id="ParentLocation">${parentLocation}</a></td>
</tr>
<tr>
<td>Path</td>
<td><div id="Path">${path}</div></td>
</tr>
<tr>
<td>Referer</td>
<td><div id="Referer">${referer}</div></td>
</tr>
<tr>
<td>ChangeLog</td>
<td><div id="ChangeLog">${changeLog}</div></td>
</tr>
</tbody>
</table>
<p><a href="${location}">Modified Resource</a></p>
<p><a href="${parentLocation}">Parent of Modified Resource</a></p>
</body>
</html> |
vskeddemos/projects/jslibdemo/WebRoot/js/dojo193/dojox/mobile/themes/custom/ComboBox.css | brucevsked/vskeddemolist |
.dijitPopup {
margin: 0;
padding: 0;
position: absolute;
border: 0;
background-color: transparent;
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 0;
}
.mblReset {
margin: 0;
padding: 0;
border: 0;
line-height: normal;
font: inherit;
color: inherit;
}
.mblComboBoxMenu {
position: relative;
overflow-y: hidden !important;
overflow: hidden;
border: 1px solid black;
border-color: #000000;
border-radius: 0;
background-color: #ffffff;
color: #000000;
}
.mblComboBoxMenuItem {
padding: .1em .2em;
border-width: 1px 0 1px 0;
border-style: solid;
text-align: left;
white-space: nowrap;
border-color: #ffffff;
color: inherit;
}
.mblComboBoxMenuItemSelected {
background-image: -webkit-gradient(linear, left top, left bottom, from(#bbbbbb), to(#999999));
background-image: linear-gradient(to bottom, #bbbbbb 0%, #999999 100%);
color: #ffffff;
}
.mblComboBoxMenuPreviousButton,
.mblComboBoxMenuNextButton {
font-style: italic;
overflow: hidden;
}
|
thirdparty/sources/boost_1_60_0/libs/icl/doc/html/boost/icl/domain_type_of_in_id657311.html | gwq5210/litlib | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Struct template domain_type_of<interval_traits< Type >></title>
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
<link rel="home" href="../../index.html" title="Chapter 1. Boost.Icl">
<link rel="up" href="../../header/boost/icl/interval_traits_hpp.html" title="Header <boost/icl/interval_traits.hpp>">
<link rel="prev" href="../../header/boost/icl/interval_traits_hpp.html" title="Header <boost/icl/interval_traits.hpp>">
<link rel="next" href="interval_traits.html" title="Struct template interval_traits">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../boost.png"></td>
<td align="center"><a href="../../../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../../libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="../../header/boost/icl/interval_traits_hpp.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../header/boost/icl/interval_traits_hpp.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="interval_traits.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry" lang="en">
<a name="boost.icl.domain_type_of_in_id657311"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Struct template domain_type_of<interval_traits< Type >></span></h2>
<p>boost::icl::domain_type_of<interval_traits< Type >></p>
</div>
<h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
<div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="../../header/boost/icl/interval_traits_hpp.html" title="Header <boost/icl/interval_traits.hpp>">boost/icl/interval_traits.hpp</a>>
</span><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Type<span class="special">></span>
<span class="keyword">struct</span> <a class="link" href="domain_type_of_in_id657311.html" title="Struct template domain_type_of<interval_traits< Type >>">domain_type_of</a><span class="special"><</span><span class="identifier">interval_traits</span><span class="special"><</span> <span class="identifier">Type</span> <span class="special">></span><span class="special">></span> <span class="special">{</span>
<span class="comment">// types</span>
<span class="keyword">typedef</span> <span class="identifier">interval_traits</span><span class="special"><</span> <span class="identifier">Type</span> <span class="special">></span><span class="special">::</span><span class="identifier">domain_type</span> <a name="boost.icl.domain_type_of_in_id657311.type"></a><span class="identifier">type</span><span class="special">;</span>
<span class="special">}</span><span class="special">;</span></pre></div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2007 -2010 Joachim Faulhaber<br>Copyright © 1999 -2006 Cortex Software GmbH<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="../../header/boost/icl/interval_traits_hpp.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../header/boost/icl/interval_traits_hpp.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="interval_traits.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
www/libs/jquery-ui/themes/base/spinner.css | KhanovaSkola/khanovaskola-v3 | /*!
* jQuery UI Spinner 1.12.1
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
*
* http://api.jqueryui.com/spinner/#theming
*/
.ui-spinner {
position: relative;
display: inline-block;
overflow: hidden;
padding: 0;
vertical-align: middle;
}
.ui-spinner-input {
border: none;
background: none;
color: inherit;
padding: .222em 0;
margin: .2em 0;
vertical-align: middle;
margin-left: .4em;
margin-right: 2em;
}
.ui-spinner-button {
width: 1.6em;
height: 50%;
font-size: .5em;
padding: 0;
margin: 0;
text-align: center;
position: absolute;
cursor: default;
display: block;
overflow: hidden;
right: 0;
}
/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
border-top-style: none;
border-bottom-style: none;
border-right-style: none;
}
.ui-spinner-up {
top: 0;
}
.ui-spinner-down {
bottom: 0;
}
|
ajax/libs/blaze/3.1.0/components.trees.min.css | ahocevar/cdnjs | /*!v3.1.0*/@charset "UTF-8";.c-tree{display:block;margin:0;padding:0;list-style:none}.c-tree .c-tree{padding:0 0 0 1em}.c-tree__item{padding:0}.c-tree__item:before{display:inline-block;padding:0 .5em 0 0;transform-origin:30% 50%;color:#cad4d8;content:"–"}.c-tree__item--expandable:before{color:#b0bec5;content:"\276F"}.c-tree__item--expanded:before{transform:rotate(90deg);color:#7b929e;content:"\276F"} |
third_party/blink/web_tests/external/wpt/css/css-text/i18n/reference/css3-text-line-break-opclns-063-ref.html | nwjs/chromium.src | <!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="utf-8"/>
<title>CSS3 Text, linebreaks: FF5B FULLWIDTH LEFT CURLY BRACKET</title>
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
<meta name='flags' content=''>
<style type='text/css'>
@font-face {
font-family: 'mplus-1p-regular';
src: url('/fonts/mplus-1p-regular.woff') format('woff');
/* filesize: 803K */
}
.test, .ref { font-size: 30px; font-family: mplus-1p-regular, sans-serif; width: 95px; padding: 0; border: 1px solid orange; line-height: 1em; }
</style>
</head>
<body>
<p class="instructions">Test passes if the two orange boxes are identical.</p>
<div class='ref'>中中<br />{文</div>
<div class='ref'>中中<br />{文</div>
</body>
</html>
|
wp-content/plugins/webevo/php/jpgraph/docportal/classref/MeshInterpolate.html | AchrafLansari/WebEvo | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><HTML><HEAD><style type="text/css">
<!--
A:link {font-family: helvetica, arial, geneva, sans-serif; font-size: small; text-decoration: none; color: #000000}
A:visited {font-family: helvetica, arial, geneva, sans-serif; font-size: small; text-decoration: none; color: #000000}
A:hover {font-family: helvetica, arial, geneva, sans-serif; font-size: small; text-decoration: underline; color: #FF0000}
A.no:link {font-family:inherit; font-size: inhreit;text-decoration: none; color: #000000}
A.no:visited {font-family:inherit; font-size: inherit;text-decoration: none; color: #000000}
A.no:hover {font-family:inherit; font-size: inherit;text-decoration: none; color: #000000}
th {font-family: helvetica, arial; color : black; font-size:90%; background : #b7c8b7; border-right:black solid 1pt; border-bottom:black solid 1pt;}
td {font-family: helvetica, arial; color : black; font-size:90%; background : white; border-right:black solid 1pt; border-bottom:black solid 1pt;}
//-->
</style></HEAD><hr><div style="padding-left:4px;border-left:solid black 1px;border-top:solid black 1px;border-bottom:solid black 2px;border-right:solid black 2px;background-color:#deaa87;font-family:courier new;font-size:16pt;">Class <a class="no" name="_C_MESHINTERPOLATE"><b>MeshInterpolate</b></a></div>
<i>(Defined in: jpgraph_meshinterpolate.inc.php : 26)</i><br> <br><table cellspaceing=0 cellpadding=4 style="border:solid #303030 1px;"><tr><td align="center" style="background:lightgray;" > <a href="MeshInterpolate.html" style="font-family:arial;font-weight:bold;color:darkblue;">MeshInterpolate</a> </td></tr><tr><td valign=top> <a href="MeshInterpolate.html#_MESHINTERPOLATE_INTSQUARE">IntSquare()</a> <br>
<a href="MeshInterpolate.html#_MESHINTERPOLATE_LINEAR">Linear()</a> <br>
</td></tr></table> <p><div style="font-weight:bold;font-family:arial;font-size:100%;">Class usage and Overview</div> <p>
<hr><span style="font-family:arial;font-size:120%;font-weight:bold;">Class Methods</span><hr><p>
<p> <div style='font-family: helvetica, arial, geneva, sans-serif;margin-bottom:4px;border-left:solid black 1px;border-top:solid black 1px;border-bottom:solid black 2px;border-right:solid black 2px;font-size:120%;background:#dde9af;padding:4px;'><a class="no" name="_MESHINTERPOLATE_INTSQUARE"><span style="color:#555555;">MeshInterpolate ::</span><br><b>IntSquare</b>($aRow, $aCol, $aFactor)</a></div>
<span style='font-family:arial;font-size:95%;'><i></i></span><p>
<table cellspacing=0 style='border:black solid 1pt;' width=100%>
<tr><th width=25%>Argument</th><th width=15%>Default</th><th width=60%>Description</th></tr>
<tr><td style='border-right:black solid 1pt;font-family:courier;font-size:100%;font-weight:bold;'><span style="color: #000000">
<span style="color: #0000BB">$aRow</span>
</span>
</td><td style='border-right:black solid 1pt;font-family:courier;font-size:100%;font-weight:bold;'> </td><td>No description available</td></tr>
<tr><td style='border-right:black solid 1pt;font-family:courier;font-size:100%;font-weight:bold;'><span style="color: #000000">
<span style="color: #0000BB">$aCol</span>
</span>
</td><td style='border-right:black solid 1pt;font-family:courier;font-size:100%;font-weight:bold;'> </td><td>No description available</td></tr>
<tr><td style='border-right:black solid 1pt;font-family:courier;font-size:100%;font-weight:bold;'><span style="color: #000000">
<span style="color: #0000BB">$aFactor</span>
</span>
</td><td style='border-right:black solid 1pt;font-family:courier;font-size:100%;font-weight:bold;'> </td><td>No description available</td></tr>
</table>
<div style="font-weight:bold;font-family:arial;font-size:90%;">Description:</div>No description available.<p>
<p> <div style='font-family: helvetica, arial, geneva, sans-serif;margin-bottom:4px;border-left:solid black 1px;border-top:solid black 1px;border-bottom:solid black 2px;border-right:solid black 2px;font-size:120%;background:#dde9af;padding:4px;'><a class="no" name="_MESHINTERPOLATE_LINEAR"><span style="color:#555555;">MeshInterpolate ::</span><br><b>Linear</b>(&$aData, $aIntFactor)</a></div>
<span style='font-family:arial;font-size:95%;'><i></i></span><p>
<table cellspacing=0 style='border:black solid 1pt;' width=100%>
<tr><th width=25%>Argument</th><th width=15%>Default</th><th width=60%>Description</th></tr>
<tr><td style='border-right:black solid 1pt;font-family:courier;font-size:100%;font-weight:bold;'><span style="color: #000000">
<span style="color: #0000BB"></span><span style="color: #007700">&</span><span style="color: #0000BB">$aData</span>
</span>
</td><td style='border-right:black solid 1pt;font-family:courier;font-size:100%;font-weight:bold;'> </td><td>No description available</td></tr>
<tr><td style='border-right:black solid 1pt;font-family:courier;font-size:100%;font-weight:bold;'><span style="color: #000000">
<span style="color: #0000BB">$aIntFactor</span>
</span>
</td><td style='border-right:black solid 1pt;font-family:courier;font-size:100%;font-weight:bold;'> </td><td>No description available</td></tr>
</table>
<div style="font-weight:bold;font-family:arial;font-size:90%;">Description:</div>No description available.<p> <hr> <p></html> |
third_party/WebKit/LayoutTests/editing/deleting/merge-paragraph-into-pre.html | js0701/chromium-crosswalk | <!DOCTYPE html>
<html>
<body>
<p id="description">This tests deleting line break after pre.
WebKit should not cancel styles added by pre by those of document's default style.</p>
<div id="test" contenteditable>
<pre>hello</pre>
world
</div>
</div>
<script src="../editing.js"></script>
<script src="../../resources/dump-as-markup.js"></script>
<script>
function editingTest() {
moveSelectionForwardByLineCommand();
deleteCommand();
Markup.description(document.getElementById('description').textContent);
Markup.dump('test');
}
runEditingTest();
</script>
</body>
</html>
|
css/semantic-ui/components/modal.css | yizanchen/yizanchen.github.io | /*!
* # Semantic UI 2.2.4 - Modal
* http://github.com/semantic-org/semantic-ui/
*
*
* Released under the MIT license
* http://opensource.org/licenses/MIT
*
*/
/*******************************
Modal
*******************************/
.ui.modal {
display: none;
position: fixed;
z-index: 1001;
top: 50%;
left: 50%;
text-align: left;
background: #FFFFFF;
border: none;
box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2);
-webkit-transform-origin: 50% 25%;
transform-origin: 50% 25%;
border-radius: 0.28571429rem;
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
will-change: top, left, margin, transform, opacity;
}
.ui.modal > :first-child:not(.icon),
.ui.modal > .icon:first-child + * {
border-top-left-radius: 0.28571429rem;
border-top-right-radius: 0.28571429rem;
}
.ui.modal > :last-child {
border-bottom-left-radius: 0.28571429rem;
border-bottom-right-radius: 0.28571429rem;
}
/*******************************
Content
*******************************/
/*--------------
Close
---------------*/
.ui.modal > .close {
cursor: pointer;
position: absolute;
top: -2.5rem;
right: -2.5rem;
z-index: 1;
opacity: 0.8;
font-size: 1.25em;
color: #FFFFFF;
width: 2.25rem;
height: 2.25rem;
padding: 0.625rem 0rem 0rem 0rem;
}
.ui.modal > .close:hover {
opacity: 1;
}
/*--------------
Header
---------------*/
.ui.modal > .header {
display: block;
font-family: 'Open Sans', 'Helvetica Neue', Arial, Helvetica, sans-serif;
background: #FFFFFF;
margin: 0em;
padding: 1.25rem 1.5rem;
box-shadow: none;
color: rgba(0, 0, 0, 0.85);
border-bottom: 1px solid rgba(34, 36, 38, 0.15);
}
.ui.modal > .header:not(.ui) {
font-size: 1.42857143rem;
line-height: 1.2857em;
font-weight: bold;
}
/*--------------
Content
---------------*/
.ui.modal > .content {
display: block;
width: 100%;
font-size: 1em;
line-height: 1.4;
padding: 1.5rem;
background: #FFFFFF;
}
.ui.modal > .image.content {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
/* Image */
.ui.modal > .content > .image {
display: block;
-webkit-box-flex: 0;
-ms-flex: 0 1 auto;
flex: 0 1 auto;
width: '';
-ms-flex-item-align: top;
-ms-grid-row-align: top;
align-self: top;
}
.ui.modal > [class*="top aligned"] {
-ms-flex-item-align: top;
-ms-grid-row-align: top;
align-self: top;
}
.ui.modal > [class*="middle aligned"] {
-ms-flex-item-align: middle;
-ms-grid-row-align: middle;
align-self: middle;
}
.ui.modal > [class*="stretched"] {
-ms-flex-item-align: stretch;
-ms-grid-row-align: stretch;
align-self: stretch;
}
/* Description */
.ui.modal > .content > .description {
display: block;
-webkit-box-flex: 1;
-ms-flex: 1 0 auto;
flex: 1 0 auto;
min-width: 0px;
-ms-flex-item-align: top;
-ms-grid-row-align: top;
align-self: top;
}
.ui.modal > .content > .icon + .description,
.ui.modal > .content > .image + .description {
-webkit-box-flex: 0;
-ms-flex: 0 1 auto;
flex: 0 1 auto;
min-width: '';
width: auto;
padding-left: 2em;
}
/*rtl:ignore*/
.ui.modal > .content > .image > i.icon {
margin: 0em;
opacity: 1;
width: auto;
line-height: 1;
font-size: 8rem;
}
/*--------------
Actions
---------------*/
.ui.modal > .actions {
background: #F9FAFB;
padding: 1rem 1rem;
border-top: 1px solid rgba(34, 36, 38, 0.15);
text-align: right;
}
.ui.modal .actions > .button {
margin-left: 0.75em;
}
/*-------------------
Responsive
--------------------*/
/* Modal Width */
@media only screen and (max-width: 767px) {
.ui.modal {
width: 95%;
margin: 0em 0em 0em -47.5%;
}
}
@media only screen and (min-width: 768px) {
.ui.modal {
width: 88%;
margin: 0em 0em 0em -44%;
}
}
@media only screen and (min-width: 992px) {
.ui.modal {
width: 850px;
margin: 0em 0em 0em -425px;
}
}
@media only screen and (min-width: 1200px) {
.ui.modal {
width: 900px;
margin: 0em 0em 0em -450px;
}
}
@media only screen and (min-width: 1920px) {
.ui.modal {
width: 950px;
margin: 0em 0em 0em -475px;
}
}
/* Tablet and Mobile */
@media only screen and (max-width: 991px) {
.ui.modal > .header {
padding-right: 2.25rem;
}
.ui.modal > .close {
top: 1.0535rem;
right: 1rem;
color: rgba(0, 0, 0, 0.87);
}
}
/* Mobile */
@media only screen and (max-width: 767px) {
.ui.modal > .header {
padding: 0.75rem 1rem !important;
padding-right: 2.25rem !important;
}
.ui.modal > .content {
display: block;
padding: 1rem !important;
}
.ui.modal > .close {
top: 0.5rem !important;
right: 0.5rem !important;
}
/*rtl:ignore*/
.ui.modal .image.content {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.ui.modal .content > .image {
display: block;
max-width: 100%;
margin: 0em auto !important;
text-align: center;
padding: 0rem 0rem 1rem !important;
}
.ui.modal > .content > .image > i.icon {
font-size: 5rem;
text-align: center;
}
/*rtl:ignore*/
.ui.modal .content > .description {
display: block;
width: 100% !important;
margin: 0em !important;
padding: 1rem 0rem !important;
box-shadow: none;
}
/* Let Buttons Stack */
.ui.modal > .actions {
padding: 1rem 1rem 0rem !important;
}
.ui.modal .actions > .buttons,
.ui.modal .actions > .button {
margin-bottom: 1rem;
}
}
/*--------------
Coupling
---------------*/
.ui.inverted.dimmer > .ui.modal {
box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2);
}
/*******************************
Types
*******************************/
.ui.basic.modal {
background-color: transparent;
border: none;
border-radius: 0em;
box-shadow: none !important;
color: #FFFFFF;
}
.ui.basic.modal > .header,
.ui.basic.modal > .content,
.ui.basic.modal > .actions {
background-color: transparent;
}
.ui.basic.modal > .header {
color: #FFFFFF;
}
.ui.basic.modal > .close {
top: 1rem;
right: 1.5rem;
}
.ui.inverted.dimmer > .basic.modal {
color: rgba(0, 0, 0, 0.87);
}
.ui.inverted.dimmer > .ui.basic.modal > .header {
color: rgba(0, 0, 0, 0.85);
}
/* Tablet and Mobile */
@media only screen and (max-width: 991px) {
.ui.basic.modal > .close {
color: #FFFFFF;
}
}
/*******************************
States
*******************************/
.ui.active.modal {
display: block;
}
/*******************************
Variations
*******************************/
/*--------------
Scrolling
---------------*/
/* A modal that cannot fit on the page */
.scrolling.dimmable.dimmed {
overflow: hidden;
}
.scrolling.dimmable.dimmed > .dimmer {
overflow: auto;
-webkit-overflow-scrolling: touch;
}
.scrolling.dimmable > .dimmer {
position: fixed;
}
.modals.dimmer .ui.scrolling.modal {
position: static !important;
margin: 3.5rem auto !important;
}
/* undetached scrolling */
.scrolling.undetached.dimmable.dimmed {
overflow: auto;
-webkit-overflow-scrolling: touch;
}
.scrolling.undetached.dimmable.dimmed > .dimmer {
overflow: hidden;
}
.scrolling.undetached.dimmable .ui.scrolling.modal {
position: absolute;
left: 50%;
margin-top: 3.5rem !important;
}
/* Coupling with Sidebar */
.undetached.dimmable.dimmed > .pusher {
z-index: auto;
}
@media only screen and (max-width: 991px) {
.modals.dimmer .ui.scrolling.modal {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
}
/*--------------
Full Screen
---------------*/
.ui.fullscreen.modal {
width: 95% !important;
left: 2.5% !important;
margin: 1em auto;
}
.ui.fullscreen.scrolling.modal {
left: 0em !important;
}
.ui.fullscreen.modal > .header {
padding-right: 2.25rem;
}
.ui.fullscreen.modal > .close {
top: 1.0535rem;
right: 1rem;
color: rgba(0, 0, 0, 0.87);
}
/*--------------
Size
---------------*/
.ui.modal {
font-size: 1rem;
}
/* Small */
.ui.small.modal > .header:not(.ui) {
font-size: 1.3em;
}
/* Small Modal Width */
@media only screen and (max-width: 767px) {
.ui.small.modal {
width: 95%;
margin: 0em 0em 0em -47.5%;
}
}
@media only screen and (min-width: 768px) {
.ui.small.modal {
width: 70.4%;
margin: 0em 0em 0em -35.2%;
}
}
@media only screen and (min-width: 992px) {
.ui.small.modal {
width: 680px;
margin: 0em 0em 0em -340px;
}
}
@media only screen and (min-width: 1200px) {
.ui.small.modal {
width: 720px;
margin: 0em 0em 0em -360px;
}
}
@media only screen and (min-width: 1920px) {
.ui.small.modal {
width: 760px;
margin: 0em 0em 0em -380px;
}
}
/* Large Modal Width */
.ui.large.modal > .header {
font-size: 1.6em;
}
@media only screen and (max-width: 767px) {
.ui.large.modal {
width: 95%;
margin: 0em 0em 0em -47.5%;
}
}
@media only screen and (min-width: 768px) {
.ui.large.modal {
width: 88%;
margin: 0em 0em 0em -44%;
}
}
@media only screen and (min-width: 992px) {
.ui.large.modal {
width: 1020px;
margin: 0em 0em 0em -510px;
}
}
@media only screen and (min-width: 1200px) {
.ui.large.modal {
width: 1080px;
margin: 0em 0em 0em -540px;
}
}
@media only screen and (min-width: 1920px) {
.ui.large.modal {
width: 1140px;
margin: 0em 0em 0em -570px;
}
}
/*******************************
Theme Overrides
*******************************/
/*******************************
Site Overrides
*******************************/
|
venv/bin/libs/gil/doc/html/g_i_l_0083.html | NixaSoftware/CVis | <!-- Copyright 2008 Lubomir Bourdev and Hailin Jin
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
-->
<!--
Copyright 2005-2007 Adobe Systems Incorporated
Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt
or a copy at http://stlab.adobe.com/licenses.html)
Some files are held under additional license.
Please see "http://stlab.adobe.com/licenses.html" for more information.
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<TITLE>Generic Image Library: dynamic_image_all.hpp File Reference</TITLE>
<META HTTP-EQUIV="content-type" CONTENT="text/html;charset=ISO-8859-1"/>
<LINK TYPE="text/css" REL="stylesheet" HREF="adobe_source.css"/>
</head>
<body>
<table border="0" cellspacing="0" cellpadding="0" style='width: 100%; margin: 0; padding: 0'><tr>
<td width="100%" valign="top" style='padding-left: 10px; padding-right: 10px; padding-bottom: 10px'>
<div class="qindex"><a class="qindex" href="index.html">Modules</a>
| <a class="qindex" href="classes.html">Alphabetical List</a>
| <a class="qindex" href="annotated.html">Class List</a>
| <a class="qindex" href="dirs.html">Directories</a>
| <a class="qindex" href="files.html">File List</a>
| <a class="qindex" href="../index.html">GIL Home Page</a>
</div>
<!-- End Header -->
<!-- Generated by Doxygen 1.5.6 -->
<div class="navpath"><a class="el" href="g_i_l_0076.html">boost</a> » <a class="el" href="g_i_l_0079.html">gil</a> » <a class="el" href="g_i_l_0078.html">extension</a> » <a class="el" href="g_i_l_0075.html">dynamic_image</a>
</div>
<div class="contents">
<h1>dynamic_image_all.hpp File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
Includes all of the GIL dynamic image extension files, for convenience.
<p>
<dl class="author" compact><dt><b>Author:</b></dt><dd>Lubomir Bourdev and Hailin Jin <br>
Adobe Systems Incorporated </dd></dl>
<dl class="date" compact><dt><b>Date:</b></dt><dd>2005-2007 <br>
Last updated on May 8, 2006 </dd></dl>
<p>
<code>#include "<a class="el" href="g_i_l_0090.html">../../gil_all.hpp</a>"</code><br>
<code>#include "<a class="el" href="g_i_l_0086.html">algorithm.hpp</a>"</code><br>
<code>#include "<a class="el" href="g_i_l_0002.html">any_image.hpp</a>"</code><br>
<code>#include "<a class="el" href="g_i_l_0005.html">apply_operation.hpp</a>"</code><br>
<code>#include "<a class="el" href="g_i_l_0643.html">variant.hpp</a>"</code><br>
<code>#include "<a class="el" href="g_i_l_0088.html">image_view_factory.hpp</a>"</code><br>
<p>
<a href="g_i_l_0082.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
</table>
</div>
<hr size="1"><address style="text-align: right;"><small>Generated on Sat May 2 13:50:15 2009 for Generic Image Library by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.6 </small></address>
</body>
</html>
|
wsgi/wsgi/static/weblink/doc/api/t-pfcExport-PDFLayerMode.html | 2014c2g12/c2g12 | <html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>
CIP JavaScript documentation for enum "
pfcPDFLayerMode"
</title>
<link href="cipdoc_default.css" type="text/css" rel="stylesheet">
<script language="JAVASCRIPT">
function findProperNode ()
{
top.frames [0].document.apiwizard.api (
6,
66
);
}
</script>
</head>
<body onLoad="findProperNode()" class="frame-entity">
<table cellspacing="0" width="100%" border="0" class="toolbar">
<tr>
<td class="toolbar-navigation"><a href="library.html">Library</a> | <a href="m-pfcExport.html">Module</a></td><td class="toolbar-lib-name">
</td>
</tr>
</table>
<hr>
<h2>Enum pfcPDFLayerMode</h2>
<b>Description</b>
<br>
<br>This enumerated type contains possible layer modes.
<br>
<br>
<br>
<br>
<br>
<hr>
<br>
<h4>Values</h4>
<dl>
<dt>
<tt><b><a name="PDF_LAYERS_ALL">PDF_LAYERS_ALL</a></b></tt>
</dt>
<dd>
<br>
</dd>
<dt>
<tt><b><a name="PDF_LAYERS_VISIBLE">PDF_LAYERS_VISIBLE</a></b></tt>
</dt>
<dd>
<br>
</dd>
<dt>
<tt><b><a name="PDF_LAYERS_NONE">PDF_LAYERS_NONE</a></b></tt>
</dt>
<dd>
<br>
</dd>
<dt>
<tt><b>PDFLayerMode_nil</b></tt>
</dt>
<dd>
Use this enumerated value to represent <i>"null"</i> passed to optional properties or method arguments.
</dd>
<br>
</dl>
</body>
</html>
|
third_party/blink/web_tests/fast/css/outline-offset-crash.html | scheib/chromium | <div style="outline-offset: 100%;"></div>
This test should not crash.
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
|
third_party/blink/web_tests/fast/css-generated-content/html-pseudo-background-color-expected.html | scheib/chromium | <!DOCTYPE html>
<p>Bug 104855: Block level pseudo elements bleed background color to <html></p>
<p>Neither frame should be red.</p>
<iframe></iframe>
<iframe></iframe>
|
test/stylesheets/test_helper.css | natefinch/discourse | /*
*= require desktop
*= require_tree .
*/
.modal-backdrop {
display: none;
}
.emoji-modal-wrapper {
display: none;
}
.emoji-modal {
position: relative;
}
|
ajax/libs/lightcase/2.0.2/css/font-lightcase.css | extend1994/cdnjs | /*
* Lightcase - jQuery Plugin
* The smart and flexible Lightbox Plugin.
*
* @author Cornel Boppart <cornel@bopp-art.com>
* @copyright Author
*
* @version 2.0.2 (23/02/2015)
*/
@font-face {
font-family: 'lightcase';
src: url('../fonts/lightcase.eot?55356177');
src: url('../fonts/lightcase.eot?55356177#iefix') format('embedded-opentype'),
url('../fonts/lightcase.woff?55356177') format('woff'),
url('../fonts/lightcase.ttf?55356177') format('truetype'),
url('../fonts/lightcase.svg?55356177#lightcase') format('svg');
font-weight: normal;
font-style: normal;
}
[class*='lightcase-icon-']:before {
font-family: 'lightcase';
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
text-align: center;
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* Uncomment for 3D effect */
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
/* Codes */
.lightcase-icon-play:before { content: '\e800'; } /* '' */
.lightcase-icon-pause:before { content: '\e801'; } /* '' */
.lightcase-icon-close:before { content: '\e802'; } /* '' */
.lightcase-icon-prev:before { content: '\e803'; } /* '' */
.lightcase-icon-next:before { content: '\e804'; } /* '' */
.lightcase-icon-spin:before { content: '\e805'; } /* '' */ |
wp/wp-content/plugins/contact-form-7/includes/css/styles.css | yosoyvictorgarcia/Alegorista_Site | div.wpcf7 {
margin: 0;
padding: 0;
}
div.wpcf7-response-output {
margin: 2em 0.5em 1em;
padding: 0.2em 1em;
}
div.wpcf7-mail-sent-ok {
border: 2px solid #398f14;
}
div.wpcf7-mail-sent-ng {
border: 2px solid #ff0000;
}
div.wpcf7-spam-blocked {
border: 2px solid #ffa500;
}
div.wpcf7-validation-errors {
border: 2px solid #f7e700;
}
span.wpcf7-form-control-wrap {
position: relative;
}
span.wpcf7-not-valid-tip {
color: #f00;
font-size: 1em;
display: block;
}
span.wpcf7-list-item {
margin-left: 0.5em;
}
.wpcf7-display-none {
display: none;
}
div.wpcf7 img.ajax-loader {
border: none;
vertical-align: middle;
margin-left: 4px;
}
div.wpcf7 div.ajax-error {
display: none;
}
div.wpcf7 .placeheld {
color: #888;
} |
tests/wpt/web-platform-tests/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_align_position_line_size-ref.html | vwvww/servo | <!DOCTYPE html>
<title>Reference for WebVTT rendering, a cue's align, position, line and size properties is possible to override using the DOM APIs</title>
<style>
html { overflow:hidden }
body { margin:0 }
.video {
display: inline-block;
width: 320px;
height: 180px;
position: relative;
font-size: 9px;
}
.cue {
position: absolute;
top: 0;
right: 51.2px;
width: 64px;
text-align: left
}
.cue > span {
font-family: Ahem, sans-serif;
background: rgba(0,0,0,0.8);
color: green;
}
</style>
<div class="video"><span class="cue"><span>There is nothing to see here people, move on</span></span></div>
|
src/main/resources/inspectionDescriptions/UnqualifiedInnerClassAccess.html | Yihy/resources_cn | <html>
<body>
Reports any references to inner classes which are not qualified with the name
of the enclosing class.
<!-- tooltip end -->
<p>
Use the checkbox below to ignore references to local inner classes that do not require an import.
<p>
</body>
</html> |
third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/elements/global-attributes/dir_auto-isolate-ref.html | axinging/chromium-crosswalk | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, isolated in LTR text</title>
<link rel="match" href="dir_auto-isolate-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />
<link rel="help" href="https://html.spec.whatwg.org/multipage/#the-dir-attribute" />
<meta name="assert" content="
When dir='auto', the direction is set according to the first strong character
of the text, but the element behaves externally as a neutral character.
In this test, it allows a preceding R to form a single directional run
with a succeeding number." />
<style>
input, textarea {
font-size:1em;
}
body {
font-size:2em;
}
.test, .ref {
border: medium solid gray;
width: 400px;
margin: 20px;
}
.comments {
display: none;
}
</style>
</head>
<body>
<div class="instructions" style="display:none"><p>Test passes if the two boxes below look exactly the same.</p></div>
<div class="comments">
Key to entities used below:
א - The Hebrew letter Alef (strongly RTL).
‭ - The LRO (left-to-right override) formatting character.
‬ - The PDF (pop directional formatting) formatting character; closes LRO.
</div>
<div class="test">
<div dir="ltr">
‭1 a! א‬
</div>
<div dir="rtl">
‭a !א 1‬
</div>
</div>
<div class="ref">
<div dir="ltr">
‭1 a! א‬
</div>
<div dir="rtl">
‭a !א 1‬
</div>
</div>
</body>
</html>
|
webroot/assets/libs/jquery-datatables/extensions/ColVis/css/dataTables.colVis.css | sonns/SpcProject |
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* ColVis styles
*/
div.ColVis {
float: right;
margin-bottom: 1em;
}
button.ColVis_Button,
ul.ColVis_collection li {
position: relative;
float: left;
margin-right: 3px;
padding: 5px 8px;
border: 1px solid #999;
cursor: pointer;
*cursor: hand;
font-size: 0.88em;
color: black !important;
white-space: nowrap;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: 1px 1px 3px #ccc;
-moz-box-shadow: 1px 1px 3px #ccc;
-ms-box-shadow: 1px 1px 3px #ccc;
-o-box-shadow: 1px 1px 3px #ccc;
box-shadow: 1px 1px 3px #ccc;
/* Generated by http://www.colorzilla.com/gradient-editor/ */
background: #ffffff; /* Old browsers */
background: -webkit-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* Chrome10+,Safari5.1+ */
background: -moz-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* FF3.6+ */
background: -ms-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* IE10+ */
background: -o-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* Opera 11.10+ */
background: linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f9f9f9',GradientType=0 ); /* IE6-9 */
}
.ColVis_Button:hover,
ul.ColVis_collection li:hover {
border: 1px solid #666;
text-decoration: none !important;
-webkit-box-shadow: 1px 1px 3px #999;
-moz-box-shadow: 1px 1px 3px #999;
-ms-box-shadow: 1px 1px 3px #999;
-o-box-shadow: 1px 1px 3px #999;
box-shadow: 1px 1px 3px #999;
background: #f3f3f3; /* Old browsers */
background: -webkit-linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* Chrome10+,Safari5.1+ */
background: -moz-linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* FF3.6+ */
background: -ms-linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* IE10+ */
background: -o-linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* Opera 11.10+ */
background: linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#f4f4f4',GradientType=0 ); /* IE6-9 */
}
button.ColVis_Button {
height: 30px;
padding: 3px 8px;
}
button.ColVis_Button::-moz-focus-inner {
border: none !important;
padding: 0;
}
button.ColVis_Button:active {
outline: none;
}
div.ColVis_collectionBackground {
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: black;
z-index: 1100;
}
ul.ColVis_collection {
width: 150px;
padding: 8px 8px 4px 8px;
margin: 0;
border: 1px solid #ccc;
border: 1px solid rgba( 0, 0, 0, 0.4 );
background-color: #f3f3f3;
background-color: rgba( 255, 255, 255, 0.3 );
overflow: hidden;
z-index: 2002;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
-ms-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
-o-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}
ul.ColVis_collection li {
position: relative;
height: auto;
left: 0;
right: 0;
padding: 0.5em;
display: block;
float: none;
margin-bottom: 4px;
-webkit-box-shadow: 1px 1px 3px #999;
-moz-box-shadow: 1px 1px 3px #999;
-ms-box-shadow: 1px 1px 3px #999;
-o-box-shadow: 1px 1px 3px #999;
box-shadow: 1px 1px 3px #999;
}
ul.ColVis_collection li {
text-align: left;
}
ul.ColVis_collection li.ColVis_Button:hover {
border: 1px solid #999;
background-color: #f0f0f0;
}
ul.ColVis_collection li span {
display: inline-block;
padding-left: 0.5em;
cursor: pointer;
}
ul.ColVis_collection li.ColVis_Special {
border-color: #555;
background: rgb(237,237,237); /* Old browsers */
background: -webkit-linear-gradient(top, rgba(237,237,237,1) 0%,rgba(214,214,214,1) 77%,rgba(232,232,232,1) 100%); /* Chrome10+,Safari5.1+ */
background: -moz-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(214,214,214,1) 77%, rgba(232,232,232,1) 100%); /* FF3.6+ */
background: -ms-linear-gradient(top, rgba(237,237,237,1) 0%,rgba(214,214,214,1) 77%,rgba(232,232,232,1) 100%); /* IE10+ */
background: -o-linear-gradient(top, rgba(237,237,237,1) 0%,rgba(214,214,214,1) 77%,rgba(232,232,232,1) 100%); /* Opera 11.10+ */
background: linear-gradient(to bottom, rgba(237,237,237,1) 0%,rgba(214,214,214,1) 77%,rgba(232,232,232,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#e8e8e8',GradientType=0 ); /* IE6-9 */
}
ul.ColVis_collection li.ColVis_Special:hover {
background: #e2e2e2; /* Old browsers */
background: -webkit-linear-gradient(top, #d0d0d0 0%,#d5d5d5 89%,#e2e2e2 100%); /* Chrome10+,Safari5.1+ */
background: -moz-linear-gradient(top, #d0d0d0 0%,#d5d5d5 89%,#e2e2e2 100%); /* FF3.6+ */
background: -ms-linear-gradient(top, #d0d0d0 0%,#d5d5d5 89%,#e2e2e2 100%); /* IE10+ */
background: -o-linear-gradient(top, #d0d0d0 0%,#d5d5d5 89%,#e2e2e2 100%); /* Opera 11.10+ */
background: linear-gradient(top, #d0d0d0 0%,#d5d5d5 89%,#e2e2e2 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#e2e2e2',GradientType=0 ); /* IE6-9 */
}
span.ColVis_radio {
display: inline-block;
width: 20px;
}
div.ColVis_catcher {
position: absolute;
z-index: 1101;
}
.disabled {
color: #999;
}
|
www/bower_components/core-tooltip/core-tooltip.html | SimoRihani/PFA-Qucit | <!--
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
<!--
The `core-tooltip` element creates a hover tooltip centered for the content
it contains. It can be positioned on the top|bottom|left|right of content using
the `position` attribute.
To include HTML in the tooltip, include the `tip` attribute on the relevant
content.
<b>Example</b>:
<core-tooltip label="I'm a tooltip">
<span>Hover over me.</span>
</core-tooltip>
<b>Example</b> - positioning the tooltip to the right:
<core-tooltip label="I'm a tooltip to the right" position="right">
<core-icon-button icon="drawer"></core-icon-button>
</core-tooltip>
<b>Example</b> - no arrow and showing by default:
<core-tooltip label="Tooltip with no arrow and always on" noarrow show>
<img src="image.jpg">
</core-tooltip>
<b>Example</b> - disable the tooltip.
<core-tooltip label="Disabled label never shows" disabled>
...
</core-tooltip>
<b>Example</b> - rich tooltip using the `tip` attribute:
<core-tooltip>
<div>Example of a rich information tooltip</div>
<div tip>
<img src="profile.jpg">Foo <b>Bar</b> - <a href="#">@baz</a>
</div>
</core-tooltip>
By default, the `tip` attribute specifies the HTML content for a rich tooltip.
You can customize this attribute with the `tipAttribute` attribute:
<core-tooltip tipAttribute="htmltooltip">
<div>Example of a rich information tooltip</div>
<div htmltooltip>
...
</div>
</core-tooltip>
@group Polymer Core Elements
@element core-tooltip
@mixins Polymer.CoreFocusable https://github.com/polymer/core-focusable
@mixins Polymer.CoreResizable https://github.com/polymer/core-resizable
@homepage http://www.polymer-project.org/components/core-tooltip/index.html
-->
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../core-focusable/core-focusable.html">
<link rel="import" href="../core-resizable/core-resizable.html">
<!-- TODO: would be nice to inherit from label to get .htmlFor, and .control,
but the latter is readonly. -->
<!-- TODO: support off center arrows. -->
<!-- TODO: detect mobile and apply the .large class, instead of manual
control. -->
<!-- TODO: possibly reuse core-overlay. -->
<polymer-element name="core-tooltip" attributes="noarrow position label show tipAttribute" role="tooltip" tabindex="0">
<template>
<link rel="stylesheet" href="core-tooltip.css">
<div id="tooltip" hidden?="{{!hasTooltipContent}}"
class="core-tooltip {{position}} {{ {noarrow: noarrow, show: show && !disabled} | tokenList}}">
<content id="c" select="[{{tipAttribute}}]">{{label}}</content>
</div>
<content></content>
</template>
<script>
(function() {
var proto = {
/**
* A simple string label for the tooltip to display. To display a rich
* HTML tooltip instead, omit `label` and include the `tip` attribute
* on a child node of `core-tooltip`.
*
* @attribute label
* @type string
* @default null
*/
label: null,
eventDelegates: {
'core-resize': 'positionChanged'
},
computed: {
// Indicates whether the tooltip has a set label propety or
// an element with the `tip` attribute.
hasTooltipContent: 'label || !!tipElement'
},
publish: {
/**
* Forces the tooltip to display. If `disabled` is set, this property is ignored.
*
* @attribute show
* @type boolean
* @default false
*/
show: {value: false, reflect: true},
/**
* Positions the tooltip to the top, right, bottom, left of its content.
*
* @attribute position
* @type string
* @default 'bottom'
*/
position: {value: 'bottom', reflect: true},
/**
* If true, the tooltip an arrow pointing towards the content.
*
* @attribute noarrow
* @type boolean
* @default false
*/
noarrow: {value: false, reflect: true}
},
/**
* Customizes the attribute used to specify which content
* is the rich HTML tooltip.
*
* @attribute tipAttribute
* @type string
* @default 'tip'
*/
tipAttribute: 'tip',
attached: function() {
this.updatedChildren();
this.resizableAttachedHandler();
},
detached: function() {
this.resizableDetachedHandler();
},
updatedChildren: function () {
this.tipElement = null;
for (var i = 0, el; el = this.$.c.getDistributedNodes()[i]; ++i) {
if (el.hasAttribute && el.hasAttribute(this.tipAttribute)) {
this.tipElement = el;
break;
}
}
// Job ensures we're not double calling setPosition() on DOM attach.
this.job('positionJob', this.setPosition);
// Monitor children to re-position tooltip when light dom changes.
this.onMutation(this, this.updatedChildren);
},
labelChanged: function(oldVal, newVal) {
this.job('positionJob', this.setPosition);
},
positionChanged: function(oldVal, newVal) {
this.job('positionJob', this.setPosition);
},
setPosition: function() {
var controlWidth = this.clientWidth;
var controlHeight = this.clientHeight;
var toolTipWidth = this.$.tooltip.clientWidth;
var toolTipHeight = this.$.tooltip.clientHeight;
switch (this.position) {
case 'top':
case 'bottom':
this.$.tooltip.style.left = (controlWidth - toolTipWidth) / 2 + 'px';
this.$.tooltip.style.top = null;
break;
case 'left':
case 'right':
this.$.tooltip.style.left = null;
this.$.tooltip.style.top = (controlHeight - toolTipHeight) / 2 + 'px';
break;
}
}
};
Polymer.mixin2(proto, Polymer.CoreFocusable);
Polymer.mixin(proto, Polymer.CoreResizable);
Polymer(proto);
})();
</script>
</polymer-element>
|
words/css/theme/league.css | ldfritz/ldfritz.github.io | /**
* League theme for reveal.js.
*
* This was the default theme pre-3.0.0.
*
* Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
*/
@import url(../../lib/font/league-gothic/league-gothic.css);
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
/*********************************************
* GLOBAL STYLES
*********************************************/
body {
background: #1c1e20;
background: -moz-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #555a5f), color-stop(100%, #1c1e20));
background: -webkit-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);
background: -o-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);
background: -ms-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);
background: radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);
background-color: #2b2b2b; }
.reveal {
font-family: "Lato", sans-serif;
font-size: 40px;
font-weight: normal;
color: #eee; }
::selection {
color: #fff;
background: #FF5E99;
text-shadow: none; }
::-moz-selection {
color: #fff;
background: #FF5E99;
text-shadow: none; }
.reveal .slides section,
.reveal .slides section > section {
line-height: 1.3;
font-weight: inherit; }
/*********************************************
* HEADERS
*********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
margin: 0 0 20px 0;
color: #eee;
font-family: "League Gothic", Impact, sans-serif;
font-weight: normal;
line-height: 1.2;
letter-spacing: normal;
text-transform: uppercase;
text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
word-wrap: break-word; }
.reveal h1 {
font-size: 3.77em; }
.reveal h2 {
font-size: 2.11em; }
.reveal h3 {
font-size: 1.55em; }
.reveal h4 {
font-size: 1em; }
.reveal h1 {
text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }
/*********************************************
* OTHER
*********************************************/
.reveal p {
margin: 20px 0;
line-height: 1.3; }
/* Ensure certain elements are never larger than the slide itself */
.reveal img,
.reveal video,
.reveal iframe {
max-width: 95%;
max-height: 95%; }
.reveal strong,
.reveal b {
font-weight: bold; }
.reveal em {
font-style: italic; }
.reveal ol,
.reveal dl,
.reveal ul {
display: inline-block;
text-align: left;
margin: 0 0 0 1em; }
.reveal ol {
list-style-type: decimal; }
.reveal ul {
list-style-type: disc; }
.reveal ul ul {
list-style-type: square; }
.reveal ul ul ul {
list-style-type: circle; }
.reveal ul ul,
.reveal ul ol,
.reveal ol ol,
.reveal ol ul {
display: block;
margin-left: 40px; }
.reveal dt {
font-weight: bold; }
.reveal dd {
margin-left: 40px; }
.reveal blockquote {
display: block;
position: relative;
width: 70%;
margin: 20px auto;
padding: 5px;
font-style: italic;
background: rgba(255, 255, 255, 0.05);
box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
.reveal blockquote p:first-child,
.reveal blockquote p:last-child {
display: inline-block; }
.reveal q {
font-style: italic; }
.reveal pre {
display: block;
position: relative;
width: 90%;
margin: 20px auto;
text-align: left;
font-size: 0.55em;
font-family: monospace;
line-height: 1.2em;
word-wrap: break-word;
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
.reveal code {
font-family: monospace;
text-transform: none; }
.reveal pre code {
display: block;
padding: 5px;
overflow: auto;
max-height: 400px;
word-wrap: normal; }
.reveal table {
margin: auto;
border-collapse: collapse;
border-spacing: 0; }
.reveal table th {
font-weight: bold; }
.reveal table th,
.reveal table td {
text-align: left;
padding: 0.2em 0.5em 0.2em 0.5em;
border-bottom: 1px solid; }
.reveal table th[align="center"],
.reveal table td[align="center"] {
text-align: center; }
.reveal table th[align="right"],
.reveal table td[align="right"] {
text-align: right; }
.reveal table tbody tr:last-child th,
.reveal table tbody tr:last-child td {
border-bottom: none; }
.reveal sup {
vertical-align: super;
font-size: smaller; }
.reveal sub {
vertical-align: sub;
font-size: smaller; }
.reveal small {
display: inline-block;
font-size: 0.6em;
line-height: 1.2em;
vertical-align: top; }
.reveal small * {
vertical-align: top; }
/*********************************************
* LINKS
*********************************************/
.reveal a {
color: #13DAEC;
text-decoration: none;
-webkit-transition: color .15s ease;
-moz-transition: color .15s ease;
transition: color .15s ease; }
.reveal a:hover {
color: #71e9f4;
text-shadow: none;
border: none; }
.reveal .roll span:after {
color: #fff;
background: #0d99a5; }
/*********************************************
* IMAGES
*********************************************/
.reveal section img {
margin: 15px 0px;
background: rgba(255, 255, 255, 0.12);
border: 4px solid #eee;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
.reveal section img.plain {
border: 0;
box-shadow: none; }
.reveal a img {
-webkit-transition: all .15s linear;
-moz-transition: all .15s linear;
transition: all .15s linear; }
.reveal a:hover img {
background: rgba(255, 255, 255, 0.2);
border-color: #13DAEC;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
.reveal .controls {
color: #13DAEC; }
/*********************************************
* PROGRESS BAR
*********************************************/
.reveal .progress {
background: rgba(0, 0, 0, 0.2);
color: #13DAEC; }
.reveal .progress span {
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
/*********************************************
* PRINT BACKGROUND
*********************************************/
@media print {
.backgrounds {
background-color: #2b2b2b; } }
|
zp_openstreetmap/L.Control.MousePosition.css | acrylian/zp_openstreetmap | .leaflet-container .leaflet-control-mouseposition {
background-color: rgba(255, 255, 255, 0.7);
box-shadow: 0 0 5px #bbb;
padding: 0 5px;
margin:0;
color: #333;
font: 11px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}
|
venv/lib/python2.7/site-packages/rest_framework/templates/rest_framework/vertical/radio.html | devs1991/test_edx_docmode | {% load i18n %}
{% trans "None" as none_choice %}
<div class="form-group {% if field.errors %}has-error{% endif %}">
{% if field.label %}
<label {% if style.hide_label %}class="sr-only"{% endif %}>
{{ field.label }}
</label>
{% endif %}
{% if style.inline %}
<div>
{% if field.allow_null or field.allow_blank %}
<label class="radio-inline">
<input type="radio" name="{{ field.name }}" value="" {% if not field.value %}checked{% endif %} />
{{ none_choice }}
</label>
{% endif %}
{% for key, text in field.choices.items %}
<label class="radio-inline">
<input type="radio" name="{{ field.name }}" value="{{ key }}" {% if key == field.value %}checked{% endif %}>
{{ text }}
</label>
{% endfor %}
</div>
{% else %}
{% if field.allow_null or field.allow_blank %}
<div class="radio">
<label>
<input type="radio" name="{{ field.name }}" value="" {% if not field.value %}checked{% endif %} />
{{ none_choice }}
</label>
</div>
{% endif %}
{% for key, text in field.choices.items %}
<div class="radio">
<label>
<input type="radio" name="{{ field.name }}" value="{{ key }}" {% if key == field.value %}checked{% endif %}>
{{ text }}
</label>
</div>
{% endfor %}
{% endif %}
{% if field.errors %}
{% for error in field.errors %}
<span class="help-block">{{ error }}</span>
{% endfor %}
{% endif %}
{% if field.help_text %}
<span class="help-block">{{ field.help_text }}</span>
{% endif %}
</div>
|
third_party/blink/web_tests/external/wpt/css/css-animations/animation-iteration-count-006-manual.html | scheib/chromium | <!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Animations Test: animation-iteration-count - 0 (zero)</title>
<link rel="author" title="Nokia Inc." href="http://www.nokia.com">
<link rel="author" title="Intel" href="http://www.intel.com">
<link rel="reviewer" title="Zhiqiang Zhang" href="mailto:zhiqiang.zhang@intel.com"> <!-- 2015-05-06 -->
<link rel="help" href="https://drafts.csswg.org/css-animations-1/#animation-name">
<link rel="help" href="https://drafts.csswg.org/css-animations-1/#animation-duration">
<link rel="help" href="https://drafts.csswg.org/css-animations-1/#animation-iteration-count">
<meta name="flags" content="animated">
<meta name="assert" content="When animation-iteration-count is set to 0 (zero), no animation is seen.">
<style>
div {
animation-name: sample;
animation-duration: 10s;
background-color: blue;
height: 100px;
width: 100px;
position: relative;
}
@keyframes sample {
from {
left: 150px;
}
to {
left: 0px;
}
}
</style>
<body>
<p>
Test passes if there is a filled blue square with 'Filler Text',
which starts staying left for about 2 seconds upon page load,
then moves from right to left once.
</p>
<div>Filler Text</div>
<script>
var div = document.getElementsByTagName("div");
div[0].style.animationIterationCount = 0;
setTimeout(setAnimationDuration, 2000);
function setAnimationDuration() {
div[0].style.animationIterationCount = 1;
}
</script>
</body>
|
indigo/_includes/analytics-piwik.html | cliffton/cliffton.github.io | <!-- Piwik Tracking Code -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//{{ site.analytics-piwik-url }}/";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', {{ site.analytics-piwik-id }}]);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript><p><img src="//{{ site.analytics-piwik-url }}/piwik.php?idsite={{ site.analytics-piwik-id }}" style="border:0;" alt="piwik img" /></p></noscript>
|
test/J2s/java/openjdk-6-src-b27/jdk/src/share/demo/jfc/Font2DTest/Font2DTest.html | andreagenso/java2scala | <html>
<!-- Changed by: Shinsuke Fukuda, 4-Aug-2000 -->
<head>
<title>
Font2DTest Demo
</title>
</head>
<BODY BGCOLOR="#FFFFFF">
<font size=-1>
<hr>
</font>
<h1>
Font2DTest
</h1>
An encompassing font/glyph demo application.
Source code is in <BR>
<a href=src/Font2DTest.java>Font2DTest.java</a>,<BR>
<a href=src/Font2DTestApplet.java>Font2DTestApplet.java</a>,<BR>
<a href=src/RangeMenu.java>RangeMenu.java</a> and<BR>
<a href=src/FontPanel.java>FontPanel.java</a>.<BR>
You can run this program either as an applet or as an application.<BR>
Detailed information about the program can be found in
<a href=README.txt>README.txt</a><BR>
<p>To run it as an application,
execute the <code>Font2DTest</code> class.
For example:
<blockquote>
<pre>
% <b>java -jar Font2DTest.jar</b>
</pre>
</blockquote>
<p>
Note: If AWTPermission's showWindowWithoutWarningBanner permission is not given,<BR>
the zoom feature will not look as good, as characters may be hidden by the warning banner.<BR>
<APPLET code="Font2DTestApplet.class" archive="Font2DTest.jar" width="850" height="700">
</APPLET>
<hr>
<font size=-1>
</font>
</body>
</html>
|
third_party/web_platform_tests/mixed-content/blockable/meta-csp/same-host-http/iframe-tag/top-level/no-redirect/opt-in-blocks.https.html | youtube/cobalt | <!DOCTYPE html>
<!-- DO NOT EDIT! Generated by mixed-content/generic/tools/generate.py using mixed-content/generic/template/test.release.html.template. -->
<html>
<head>
<title>Mixed-Content: Blockable content</title>
<meta charset='utf-8'>
<meta name="description" content="Test behavior of blockable content.">
<link rel="author" title="Kristijan Burnik" href="burnik@chromium.org">
<link rel="help" href="http://www.w3.org/TR/mixed-content/#category-blockable">
<meta name="assert" content="opt_in_method: meta-csp
origin: same-host-http
source_scheme: https
context_nesting: top-level
redirection: no-redirect
subresource: iframe-tag
expectation: blocked">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/mixed-content/generic/common.js"></script>
<script src="/mixed-content/generic/mixed-content-test-case.js?pipe=sub"></script>
</head>
<body>
<script>
MixedContentTestCase(
{
"opt_in_method": "meta-csp",
"origin": "same-host-http",
"source_scheme": "https",
"context_nesting": "top-level",
"redirection": "no-redirect",
"subresource": "iframe-tag",
"expectation": "blocked"
},
document.querySelector("meta[name=assert]").content,
new SanityChecker()
).start();
</script>
<div id="log"></div>
</body>
</html>
|
closure/goog/net/xpc/crosspagechannel_test.html | degalab/closure-library | <!DOCTYPE html>
<!--
-->
<html>
<!--
Copyright 2009 The Closure Library Authors. All Rights Reserved.
Use of this source code is governed by the Apache License, Version 2.0.
See the COPYING file for details.
-->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>CrossPageChannel: End-to-End Test</title>
<script type="text/javascript" src="../../base.js"></script>
<script type="text/javascript">
goog.require('goog.Disposable');
goog.require('goog.Uri');
goog.require('goog.async.Deferred');
goog.require('goog.dom');
goog.require('goog.log');
goog.require('goog.net.xpc.CrossPageChannel');
goog.require('goog.object');
goog.require('goog.testing.AsyncTestCase');
goog.require('goog.testing.PropertyReplacer');
goog.require('goog.testing.jsunit');
</script>
</head>
<body>
<script type="text/javascript">
// Set this to false when working on this test. It needs to be true for
// automated testing, as some browsers (eg IE8) choke on the large numbers of
// iframes this test would otherwise leave active.
var CLEAN_UP_IFRAMES = true;
var IFRAME_LOAD_WAIT_MS = 1000;
var stubs = new goog.testing.PropertyReplacer();
var asyncTestCase = goog.testing.AsyncTestCase.createAndInstall(
document.title);
var uniqueId = 0;
var driver;
var canAccessSameDomainIframe = true;
var accessCheckIframes = [];
function setUpPage() {
// This test is insanely slow on IE8 for some reason.
asyncTestCase.stepTimeout = 20 * 1000;
// Show debug log
var debugDiv = goog.dom.getElement('debugDiv');
var logger = goog.log.getLogger('goog.net.xpc');
logger.setLevel(goog.log.Level.ALL);
goog.log.addHandler(logger, function(logRecord) {
var msgElm = goog.dom.createDom('div');
msgElm.innerHTML = logRecord.getMessage();
goog.dom.appendChild(debugDiv, msgElm);
});
asyncTestCase.waitForAsync('Checking if we can access same domain iframes');
checkSameDomainIframeAccess();
}
function setUp() {
driver = new Driver();
}
function tearDown() {
stubs.reset();
driver.dispose();
}
function checkSameDomainIframeAccess() {
accessCheckIframes.push(
create1x1Iframe('nonexistant', 'testdata/i_am_non_existant.html'));
window.setTimeout(function () {
accessCheckIframes.push(
create1x1Iframe('existant', 'testdata/access_checker.html'));
}, 10);
}
function create1x1Iframe(iframeId, src) {
var iframeAccessChecker = goog.dom.createElement('IFRAME');
iframeAccessChecker.id = iframeAccessChecker.name = iframeId;
iframeAccessChecker.style.width = iframeAccessChecker.style.height = '1px';
iframeAccessChecker.src = src;
document.body.insertBefore(iframeAccessChecker, document.body.firstChild);
return iframeAccessChecker;
}
function sameDomainIframeAccessComplete(canAccess) {
canAccessSameDomainIframe = canAccess;
for (var i = 0; i < accessCheckIframes.length; i++) {
document.body.removeChild(accessCheckIframes[i]);
}
asyncTestCase.continueTesting();
}
function testCreateIframeSpecifyId() {
driver.createPeerIframe('new_iframe');
asyncTestCase.waitForAsync('iframe load');
window.setTimeout(function() {
driver.checkPeerIframe();
asyncTestCase.continueTesting();
}, IFRAME_LOAD_WAIT_MS);
}
function testCreateIframeRandomId() {
driver.createPeerIframe();
asyncTestCase.waitForAsync('iframe load');
window.setTimeout(function() {
driver.checkPeerIframe();
asyncTestCase.continueTesting();
}, IFRAME_LOAD_WAIT_MS);
}
function testGetRole() {
var cfg = {};
cfg[goog.net.xpc.CfgFields.ROLE] = goog.net.xpc.CrossPageChannelRole.OUTER;
var channel = new goog.net.xpc.CrossPageChannel(cfg);
// If the configured role is ignored, this will cause the dynamicly
// determined role to become INNER.
channel.peerWindowObject_ = window.parent;
assertEquals('Channel should use role from the config.',
goog.net.xpc.CrossPageChannelRole.OUTER, channel.getRole());
channel.dispose();
}
// The following batch of tests:
// * Establishes a peer iframe
// * Connects an XPC channel between the frames
// * From the connection callback in each frame, sends an 'echo' request, and
// expects a 'response' response.
// * Reconnects the inner frame, sends an 'echo', expects a 'response'.
// * Optionally, reconnects the outer frame, sends an 'echo', expects a
// 'response'.
// * Optionally, reconnects the inner frame, but first reconfigures it to the
// alternate protocol version, simulating an inner frame navigation that
// picks up a new/old version.
//
// Every valid combination of protocol versions is tested, with both single and
// double ended handshakes. Two timing scenarios are tested per combination,
// which is what the 'reverse' parameter distinguishes.
//
// Where single sided handshake is in use, reconnection by the outer frame is
// not supported, and therefore is not tested.
//
// The only known issue migrating to V2 is that once two V2 peers have
// connected, replacing either peer with a V1 peer will not work. Upgrading V1
// peers to v2 is supported, as is replacing the only v2 peer in a connection
// with a v1.
function testLifeCycle_v1_v1() {
checkLifeCycle(
false /* oneSidedHandshake */,
1 /* innerProtocolVersion */,
1 /* outerProtocolVersion */,
true /* outerFrameReconnectSupported */,
true /* innerFrameMigrationSupported */,
false /* reverse */);
}
function testLifeCycle_v1_v1_rev() {
checkLifeCycle(
false /* oneSidedHandshake */,
1 /* innerProtocolVersion */,
1 /* outerProtocolVersion */,
true /* outerFrameReconnectSupported */,
true /* innerFrameMigrationSupported */,
true /* reverse */);
}
function testLifeCycle_v1_v1_onesided() {
checkLifeCycle(
true /* oneSidedHandshake */,
1 /* innerProtocolVersion */,
1 /* outerProtocolVersion */,
false /* outerFrameReconnectSupported */,
true /* innerFrameMigrationSupported */,
false /* reverse */);
}
function testLifeCycle_v1_v1_onesided_rev() {
checkLifeCycle(
true /* oneSidedHandshake */,
1 /* innerProtocolVersion */,
1 /* outerProtocolVersion */,
false /* outerFrameReconnectSupported */,
true /* innerFrameMigrationSupported */,
true /* reverse */);
}
function testLifeCycle_v1_v2() {
checkLifeCycle(
false /* oneSidedHandshake */,
1 /* innerProtocolVersion */,
2 /* outerProtocolVersion */,
true /* outerFrameReconnectSupported */,
true /* innerFrameMigrationSupported */,
false /* reverse */);
}
function testLifeCycle_v1_v2_rev() {
checkLifeCycle(
false /* oneSidedHandshake */,
1 /* innerProtocolVersion */,
2 /* outerProtocolVersion */,
true /* outerFrameReconnectSupported */,
true /* innerFrameMigrationSupported */,
true /* reverse */);
}
function testLifeCycle_v1_v2_onesided() {
checkLifeCycle(
true /* oneSidedHandshake */,
1 /* innerProtocolVersion */,
2 /* outerProtocolVersion */,
false /* outerFrameReconnectSupported */,
true /* innerFrameMigrationSupported */,
false /* reverse */);
}
function testLifeCycle_v1_v2_onesided_rev() {
checkLifeCycle(
true /* oneSidedHandshake */,
1 /* innerProtocolVersion */,
2 /* outerProtocolVersion */,
false /* outerFrameReconnectSupported */,
true /* innerFrameMigrationSupported */,
true /* reverse */);
}
function testLifeCycle_v2_v1() {
checkLifeCycle(
false /* oneSidedHandshake */,
2 /* innerProtocolVersion */,
1 /* outerProtocolVersion */,
true /* outerFrameReconnectSupported */,
true /* innerFrameMigrationSupported */,
false /* reverse */);
}
function testLifeCycle_v2_v1_rev() {
checkLifeCycle(
false /* oneSidedHandshake */,
2 /* innerProtocolVersion */,
1 /* outerProtocolVersion */,
true /* outerFrameReconnectSupported */,
true /* innerFrameMigrationSupported */,
true /* reverse */);
}
function testLifeCycle_v2_v1_onesided() {
checkLifeCycle(
true /* oneSidedHandshake */,
2 /* innerProtocolVersion */,
1 /* outerProtocolVersion */,
false /* outerFrameReconnectSupported */,
true /* innerFrameMigrationSupported */,
false /* reverse */);
}
function testLifeCycle_v2_v1_onesided_rev() {
checkLifeCycle(
true /* oneSidedHandshake */,
2 /* innerProtocolVersion */,
1 /* outerProtocolVersion */,
false /* outerFrameReconnectSupported */,
true /* innerFrameMigrationSupported */,
true /* reverse */);
}
function testLifeCycle_v2_v2() {
checkLifeCycle(
false /* oneSidedHandshake */,
2 /* innerProtocolVersion */,
2 /* outerProtocolVersion */,
true /* outerFrameReconnectSupported */,
false /* innerFrameMigrationSupported */,
false /* reverse */);
}
function testLifeCycle_v2_v2_rev() {
checkLifeCycle(
false /* oneSidedHandshake */,
2 /* innerProtocolVersion */,
2 /* outerProtocolVersion */,
true /* outerFrameReconnectSupported */,
false /* innerFrameMigrationSupported */,
true /* reverse */);
}
function testLifeCycle_v2_v2_onesided() {
checkLifeCycle(
true /* oneSidedHandshake */,
2 /* innerProtocolVersion */,
2 /* outerProtocolVersion */,
false /* outerFrameReconnectSupported */,
false /* innerFrameMigrationSupported */,
false /* reverse */);
}
function testLifeCycle_v2_v2_onesided_rev() {
checkLifeCycle(
true /* oneSidedHandshake */,
2 /* innerProtocolVersion */,
2 /* outerProtocolVersion */,
false /* outerFrameReconnectSupported */,
false /* innerFrameMigrationSupported */,
true /* reverse */);
}
function checkLifeCycle(oneSidedHandshake, innerProtocolVersion,
outerProtocolVersion, outerFrameReconnectSupported,
innerFrameMigrationSupported, reverse) {
driver.createPeerIframe('new_iframe', oneSidedHandshake,
innerProtocolVersion, outerProtocolVersion);
driver.connect(true /* fullLifeCycleTest */, outerFrameReconnectSupported,
innerFrameMigrationSupported, reverse);
}
function testConnectMismatchedNames_v1_v1() {
checkConnectMismatchedNames(
1 /* innerProtocolVersion */,
1 /* outerProtocolVersion */,
false /* reverse */);
}
function testConnectMismatchedNames_v1_v1_rev() {
checkConnectMismatchedNames(
1 /* innerProtocolVersion */,
1 /* outerProtocolVersion */,
true /* reverse */);
}
function testConnectMismatchedNames_v1_v2() {
checkConnectMismatchedNames(
1 /* innerProtocolVersion */,
2 /* outerProtocolVersion */,
false /* reverse */);
}
function testConnectMismatchedNames_v1_v2_rev() {
checkConnectMismatchedNames(
1 /* innerProtocolVersion */,
2 /* outerProtocolVersion */,
true /* reverse */);
}
function testConnectMismatchedNames_v2_v1() {
checkConnectMismatchedNames(
2 /* innerProtocolVersion */,
1 /* outerProtocolVersion */,
false /* reverse */);
}
function testConnectMismatchedNames_v2_v1_rev() {
checkConnectMismatchedNames(
2 /* innerProtocolVersion */,
1 /* outerProtocolVersion */,
true /* reverse */);
}
function testConnectMismatchedNames_v2_v2() {
checkConnectMismatchedNames(
2 /* innerProtocolVersion */,
2 /* outerProtocolVersion */,
false /* reverse */);
}
function testConnectMismatchedNames_v2_v2_rev() {
checkConnectMismatchedNames(
2 /* innerProtocolVersion */,
2 /* outerProtocolVersion */,
true /* reverse */);
}
function checkConnectMismatchedNames(innerProtocolVersion,
outerProtocolVersion, reverse) {
driver.createPeerIframe('new_iframe', false /* oneSidedHandshake */, innerProtocolVersion,
outerProtocolVersion, true /* opt_randomChannelNames */);
driver.connect(false /* fullLifeCycleTest */,
false /* outerFrameReconnectSupported */,
false /* innerFrameMigrationSupported */,
false /* reverse */);
}
function testEscapeServiceName() {
var escape = goog.net.xpc.CrossPageChannel.prototype.escapeServiceName_;
assertEquals('Shouldn\'t escape alphanumeric name',
'fooBar123', escape('fooBar123'));
assertEquals('Shouldn\'t escape most non-alphanumeric characters',
'`~!@#$^&*()_-=+ []{}\'";,<.>/?\\',
escape('`~!@#$^&*()_-=+ []{}\'";,<.>/?\\'));
assertEquals('Should escape %, |, and :',
'foo%3ABar%7C123%25', escape('foo:Bar|123%'));
assertEquals('Should escape tp', '%25tp', escape('tp'));
assertEquals('Should escape %tp', '%25%25tp', escape('%tp'));
assertEquals('Should not escape stp', 'stp', escape('stp'));
assertEquals('Should not escape s%tp', 's%25tp', escape('s%tp'));
}
function testSameDomainCheck_noMessageOrigin() {
var channel = new goog.net.xpc.CrossPageChannel(goog.object.create(
goog.net.xpc.CfgFields.PEER_HOSTNAME, 'http://foo.com'));
assertTrue(channel.isMessageOriginAcceptable_(undefined));
}
function testSameDomainCheck_noPeerHostname() {
var channel = new goog.net.xpc.CrossPageChannel({});
assertTrue(channel.isMessageOriginAcceptable_('http://foo.com'));
}
function testSameDomainCheck_unconfigured() {
var channel = new goog.net.xpc.CrossPageChannel({});
assertTrue(channel.isMessageOriginAcceptable_(undefined));
}
function testSameDomainCheck_originsMatch() {
var channel = new goog.net.xpc.CrossPageChannel(goog.object.create(
goog.net.xpc.CfgFields.PEER_HOSTNAME, 'http://foo.com'));
assertTrue(channel.isMessageOriginAcceptable_('http://foo.com'));
}
function testSameDomainCheck_originsMismatch() {
var channel = new goog.net.xpc.CrossPageChannel(goog.object.create(
goog.net.xpc.CfgFields.PEER_HOSTNAME, 'http://foo.com'));
assertFalse(channel.isMessageOriginAcceptable_('http://nasty.com'));
}
function testUnescapeServiceName() {
var unescape = goog.net.xpc.CrossPageChannel.prototype.unescapeServiceName_;
assertEquals('Shouldn\'t modify alphanumeric name',
'fooBar123', unescape('fooBar123'));
assertEquals('Shouldn\'t modify most non-alphanumeric characters',
'`~!@#$^&*()_-=+ []{}\'";,<.>/?\\',
unescape('`~!@#$^&*()_-=+ []{}\'";,<.>/?\\'));
assertEquals('Should unescape URL-escapes',
'foo:Bar|123%', unescape('foo%3ABar%7C123%25'));
assertEquals('Should unescape tp', 'tp', unescape('%25tp'));
assertEquals('Should unescape %tp', '%tp', unescape('%25%25tp'));
assertEquals('Should not escape stp', 'stp', unescape('stp'));
assertEquals('Should not escape s%tp', 's%tp', unescape('s%25tp'));
}
/**
* Tests the case where the channel is disposed before it is fully connected.
*/
function testDisposeBeforeConnect() {
asyncTestCase.waitForAsync('Checking disposal before connection.')
driver.createPeerIframe('new_iframe', false /* oneSidedHandshake */,
2 /* innerProtocolVersion */, 2 /* outerProtocolVersion */,
true /* opt_randomChannelNames */);
driver.connectOuterAndDispose();
}
/**
* Driver for the tests for CrossPageChannel.
*
* @constructor
* @extends {goog.Disposable}
*/
Driver = function() {
goog.Disposable.call(this);
/**
* The peer iframe.
* @type {!Element}
* @private
*/
this.iframe_ = null;
/**
* The channel to use.
* @type {goog.net.xpc.CrossPageChannel}
* @private
*/
this.channel_ = null;
/**
* Outer frame configuration object.
* @type {Object}
* @private
*/
this.outerFrameCfg_ = null;
/**
* The initial name of the outer channel.
* @type {?string}
* @private
*/
this.initialOuterChannelName_ = null;
/**
* Inner frame configuration object.
* @type {Object}
* @private
*/
this.innerFrameCfg_ = null;
/**
* The contents of the payload of the 'echo' request sent by the inner frame.
* @type {?string}
* @private
*/
this.innerFrameEchoPayload_ = null;
/**
* The contents of the payload of the 'echo' request sent by the outer frame.
* @type {?string}
* @private
*/
this.outerFrameEchoPayload_ = null;
/**
* A deferred which fires when the inner frame receives its echo response.
* @type {goog.async.Deferred}
* @private
*/
this.innerFrameResponseReceived_ = new goog.async.Deferred();
/**
* A deferred which fires when the outer frame receives its echo response.
* @type {goog.async.Deferred}
* @private
*/
this.outerFrameResponseReceived_ = new goog.async.Deferred();
};
goog.inherits(Driver, goog.Disposable);
/** @override */
Driver.prototype.disposeInternal = function() {
// Required to make this test perform acceptably (and pass) on slow browsers,
// esp IE8.
if (CLEAN_UP_IFRAMES) {
goog.dom.removeNode(this.iframe_);
delete this.iframe_;
}
goog.dispose(this.channel_);
this.innerFrameResponseReceived_.cancel();
this.innerFrameResponseReceived_ = null;
this.outerFrameResponseReceived_.cancel();
this.outerFrameResponseReceived_ = null;
goog.base(this, 'disposeInternal');
};
/**
* Returns the child peer's window object.
* @return {Window} Child peer's window.
* @private
*/
Driver.prototype.getInnerPeer_ = function() {
return this.iframe_.contentWindow;
};
/**
* Sets up the configuration objects for the inner and outer frames.
* @param {string=} opt_iframeId If present, the ID of the iframe to use,
* otherwise, tells the channel to generate an iframe ID.
* @param {boolean=} opt_oneSidedHandshake Whether the one sided handshake
* config option should be set.
* @param {string=} opt_channelName The name of the channel to use, or null
* to generate one.
* @param {number=} opt_innerProtocolVersion The native transport protocol
* version used in the inner iframe.
* @param {number=} opt_outerProtocolVersion The native transport protocol
* version used in the outer iframe.
* @param {boolean=} randomChannelNames Whether the different ends of the
* channel should be allowed to pick differing, random names.
* @return {string} The name of the created channel.
* @private
*/
Driver.prototype.setConfiguration_ = function(opt_iframeId,
opt_oneSidedHandshake, opt_channelName, opt_innerProtocolVersion,
opt_outerProtocolVersion, opt_randomChannelNames) {
var cfg = {};
if (opt_iframeId) {
cfg[goog.net.xpc.CfgFields.IFRAME_ID] = opt_iframeId;
}
cfg[goog.net.xpc.CfgFields.PEER_URI] = 'testdata/inner_peer.html';
if (!opt_randomChannelNames) {
var channelName = opt_channelName || 'test_channel' + uniqueId++;
cfg[goog.net.xpc.CfgFields.CHANNEL_NAME] = channelName;
}
cfg[goog.net.xpc.CfgFields.LOCAL_POLL_URI] = 'does-not-exist.html';
cfg[goog.net.xpc.CfgFields.PEER_POLL_URI] = 'does-not-exist.html';
cfg[goog.net.xpc.CfgFields.ONE_SIDED_HANDSHAKE] = !!opt_oneSidedHandshake;
cfg[goog.net.xpc.CfgFields.NATIVE_TRANSPORT_PROTOCOL_VERSION] =
opt_outerProtocolVersion;
function resolveUri(fieldName) {
cfg[fieldName] =
goog.Uri.resolve(window.location.href, cfg[fieldName]).toString();
}
resolveUri(goog.net.xpc.CfgFields.PEER_URI);
resolveUri(goog.net.xpc.CfgFields.LOCAL_POLL_URI);
resolveUri(goog.net.xpc.CfgFields.PEER_POLL_URI);
this.outerFrameCfg_ = cfg;
this.innerFrameCfg_ = goog.object.clone(cfg);
this.innerFrameCfg_[
goog.net.xpc.CfgFields.NATIVE_TRANSPORT_PROTOCOL_VERSION] =
opt_innerProtocolVersion;
};
/**
* Creates an outer frame channel object.
* @private
*/
Driver.prototype.createChannel_ = function() {
if (this.channel_) {
this.channel_.dispose();
}
this.channel_ = new goog.net.xpc.CrossPageChannel(this.outerFrameCfg_);
this.channel_.registerService('echo',
goog.bind(this.echoHandler_, this));
this.channel_.registerService('response',
goog.bind(this.responseHandler_, this));
return this.channel_.name;
};
/**
* Checks the names of the inner and outer frames meet expectations.
* @private
*/
Driver.prototype.checkChannelNames_ = function() {
var outerName = this.channel_.name;
var innerName = this.getInnerPeer_().channel.name;
var configName = this.innerFrameCfg_[goog.net.xpc.CfgFields.CHANNEL_NAME]
|| null;
// The outer channel never changes its name.
assertEquals(this.initialOuterChannelName_, outerName);
// The name should be as configured, if it was configured.
if (configName) {
assertEquals(configName, innerName);
}
// The names of both ends of the channel should match.
assertEquals(innerName, outerName);
G_testRunner.log('Channel name: ' + innerName);
};
/**
* Returns the configuration of the xpc.
* @return {?Object} The configuration of the xpc.
*/
Driver.prototype.getInnerFrameConfiguration = function() {
return this.innerFrameCfg_;
};
/**
* Creates the peer iframe.
* @param {string=} opt_iframeId If present, the ID of the iframe to create,
* otherwise, generates an iframe ID.
* @param {boolean=} opt_oneSidedHandshake Whether a one sided handshake is
* specified.
* @param {number=} opt_innerProtocolVersion The native transport protocol
* version used in the inner iframe.
* @param {number=} opt_outerProtocolVersion The native transport protocol
* version used in the outer iframe.
* @param {boolean=} opt_randomChannelNames Whether the ends of the channel
* should be allowed to pick differing, random names.
* @return {!Array.<string>} The id of the created iframe and the name of the
* created channel.
*/
Driver.prototype.createPeerIframe = function(opt_iframeId,
opt_oneSidedHandshake, opt_innerProtocolVersion, opt_outerProtocolVersion,
opt_randomChannelNames) {
var expectedIframeId;
if (opt_iframeId) {
expectedIframeId = opt_iframeId = opt_iframeId + uniqueId++;
} else {
// Have createPeerIframe() generate an ID
stubs.set(goog.net.xpc, 'getRandomString', function(length) {
return '' + length;
});
expectedIframeId = 'xpcpeer4';
}
assertNull('element[id=' + expectedIframeId + '] exists',
goog.dom.getElement(expectedIframeId));
this.setConfiguration_(opt_iframeId, opt_oneSidedHandshake,
undefined /* opt_channelName */, opt_innerProtocolVersion,
opt_outerProtocolVersion, opt_randomChannelNames);
var channelName = this.createChannel_();
this.initialOuterChannelName_ = channelName;
this.iframe_ = this.channel_.createPeerIframe(document.body);
assertEquals(expectedIframeId, this.iframe_.id);
};
/**
* Checks if the peer iframe has been created.
*/
Driver.prototype.checkPeerIframe = function() {
assertNotNull(this.iframe_);
var peer = this.getInnerPeer_();
assertNotNull(peer);
assertNotNull(peer.document);
};
/**
* Starts the connection. The connection happens asynchronously.
*/
Driver.prototype.connect = function(fullLifeCycleTest,
outerFrameReconnectSupported, innerFrameMigrationSupported, reverse) {
if (!this.isTransportTestable_()) {
asyncTestCase.continueTesting();
return;
}
asyncTestCase.waitForAsync('parent and child connect');
// Set the criteria for the initial handshake portion of the test.
this.reinitializeDeferreds_();
this.innerFrameResponseReceived_.awaitDeferred(
this.outerFrameResponseReceived_);
this.innerFrameResponseReceived_.addCallback(
goog.bind(this.checkChannelNames_, this));
if (fullLifeCycleTest) {
this.innerFrameResponseReceived_.addCallback(
goog.bind(this.testReconnects_, this,
outerFrameReconnectSupported, innerFrameMigrationSupported));
} else {
this.innerFrameResponseReceived_.addCallback(
goog.bind(asyncTestCase.continueTesting, asyncTestCase));
}
this.continueConnect_(reverse);
};
Driver.prototype.continueConnect_ = function(reverse) {
// Wait until the peer is fully established. Establishment is sometimes very
// slow indeed, especially on virtual machines, so a fixed timeout is not
// suitable. This wait is required because we want to take precise control
// of the channel startup timing, and shouldn't be needed in production use,
// where the inner frame's channel is typically not started by a DOM call as
// it is here.
if (!this.getInnerPeer_() || !this.getInnerPeer_().instantiateChannel) {
window.setTimeout(goog.bind(this.continueConnect_, this, reverse), 100);
return;
}
var connectFromOuterFrame = goog.bind(this.channel_.connect, this.channel_,
goog.bind(this.outerFrameConnected_, this));
var innerConfig = this.innerFrameCfg_;
var connectFromInnerFrame = goog.bind(this.getInnerPeer_().instantiateChannel,
this.getInnerPeer_(), innerConfig);
// Take control of the timing and reverse of each frame's first SETUP call. If
// these happen to fire right on top of each other, that tends to mask
// problems that reliably occur when there is a short delay.
window.setTimeout(connectFromOuterFrame, reverse ? 1 : 10);
window.setTimeout(connectFromInnerFrame, reverse ? 10 : 1);
};
/**
* Called by the outer frame connection callback.
* @private
*/
Driver.prototype.outerFrameConnected_ = function() {
var payload = this.outerFrameEchoPayload_ =
goog.net.xpc.getRandomString(10);
this.channel_.send('echo', payload);
};
/**
* Called by the inner frame connection callback.
*/
Driver.prototype.innerFrameConnected = function() {
var payload = this.innerFrameEchoPayload_ =
goog.net.xpc.getRandomString(10);
this.getInnerPeer_().sendEcho(payload);
};
/**
* The handler function for incoming echo requests.
* @param {string} payload The message payload.
* @private
*/
Driver.prototype.echoHandler_ = function(payload) {
assertTrue('outer frame should be connected', this.channel_.isConnected());
var peer = this.getInnerPeer_();
assertTrue('child should be connected', peer.isConnected());
this.channel_.send('response', payload);
};
/**
* The handler function for incoming echo responses.
* @param {string} payload The message payload.
* @private
*/
Driver.prototype.responseHandler_ = function(payload) {
assertTrue('outer frame should be connected', this.channel_.isConnected());
var peer = this.getInnerPeer_();
assertTrue('child should be connected', peer.isConnected());
assertEquals(this.outerFrameEchoPayload_, payload);
this.outerFrameResponseReceived_.callback(true);
};
/**
* The handler function for incoming echo replies.
* @param {string} payload The message payload.
* @private
*/
Driver.prototype.innerFrameGotResponse = function(payload) {
assertTrue('outer frame should be connected', this.channel_.isConnected());
var peer = this.getInnerPeer_();
assertTrue('child should be connected', peer.isConnected());
assertEquals(this.innerFrameEchoPayload_, payload);
this.innerFrameResponseReceived_.callback(true);
};
/**
* The second phase of the standard test, where reconnections of both the inner
* and outer frames are performed.
* @param {boolean} outerFrameReconnectSupported Whether outer frame reconnects
* are supported, and should be tested.
* @private
*/
Driver.prototype.testReconnects_ = function(outerFrameReconnectSupported,
innerFrameMigrationSupported) {
G_testRunner.log('Performing inner frame reconnect');
this.reinitializeDeferreds_();
this.innerFrameResponseReceived_.addCallback(
goog.bind(this.checkChannelNames_, this));
if (outerFrameReconnectSupported) {
this.innerFrameResponseReceived_.addCallback(
goog.bind(this.performOuterFrameReconnect_, this,
innerFrameMigrationSupported));
} else if (innerFrameMigrationSupported) {
this.innerFrameResponseReceived_.addCallback(
goog.bind(this.migrateInnerFrame_, this));
} else {
this.innerFrameResponseReceived_.addCallback(
goog.bind(asyncTestCase.continueTesting, asyncTestCase));
}
this.performInnerFrameReconnect_();
};
/**
* Initializes the deferreds and clears the echo payloads, ready for another
* sub-test.
* @private
*/
Driver.prototype.reinitializeDeferreds_ = function() {
this.innerFrameEchoPayload_ = null;
this.outerFrameEchoPayload_ = null;
this.innerFrameResponseReceived_.cancel();
this.innerFrameResponseReceived_ = new goog.async.Deferred();
this.outerFrameResponseReceived_.cancel();
this.outerFrameResponseReceived_ = new goog.async.Deferred();
};
/**
* Get the inner frame to reconnect, and repeat the echo test.
* @private
*/
Driver.prototype.performInnerFrameReconnect_ = function() {
var peer = this.getInnerPeer_();
peer.instantiateChannel(this.innerFrameCfg_);
};
/**
* Get the outer frame to reconnect, and repeat the echo test.
* @private
*/
Driver.prototype.performOuterFrameReconnect_ = function(
innerFrameMigrationSupported) {
G_testRunner.log('Reconnecting outer frame');
this.reinitializeDeferreds_();
this.innerFrameResponseReceived_.addCallback(
goog.bind(this.checkChannelNames_, this));
if (innerFrameMigrationSupported) {
this.outerFrameResponseReceived_.addCallback(
goog.bind(this.migrateInnerFrame_, this));
} else {
this.outerFrameResponseReceived_.addCallback(
goog.bind(asyncTestCase.continueTesting, asyncTestCase));
}
this.createChannel_();
this.channel_.connect(goog.bind(this.outerFrameConnected_, this));
};
/**
* Migrate the inner frame to the alternate protocol version and reconnect it.
* @private
*/
Driver.prototype.migrateInnerFrame_ = function() {
G_testRunner.log('Migrating inner frame');
this.reinitializeDeferreds_();
var innerFrameProtoVersion = this.innerFrameCfg_[
goog.net.xpc.CfgFields.NATIVE_TRANSPORT_PROTOCOL_VERSION];
this.innerFrameResponseReceived_.addCallback(
goog.bind(this.checkChannelNames_, this));
this.innerFrameResponseReceived_.addCallback(
goog.bind(asyncTestCase.continueTesting, asyncTestCase));
this.innerFrameCfg_[
goog.net.xpc.CfgFields.NATIVE_TRANSPORT_PROTOCOL_VERSION] =
innerFrameProtoVersion == 1 ? 2 : 1;
this.performInnerFrameReconnect_();
};
/**
* Determines if the transport type for the channel is testable.
* Some transports are misusing global state or making other
* assumptions that cause connections to fail.
* @return {boolean} Whether the transport is testable.
* @private
*/
Driver.prototype.isTransportTestable_ = function() {
var testable = false;
var transportType = this.channel_.determineTransportType_();
switch (transportType) {
case goog.net.xpc.TransportTypes.IFRAME_RELAY:
case goog.net.xpc.TransportTypes.IFRAME_POLLING:
testable = canAccessSameDomainIframe;
break;
case goog.net.xpc.TransportTypes.NATIVE_MESSAGING:
case goog.net.xpc.TransportTypes.FLASH:
case goog.net.xpc.TransportTypes.NIX:
testable = true;
break;
}
return testable;
};
/**
* Connect the outer channel but not the inner one. Wait a short time, then
* dispose the outer channel and make sure it was torn down properly.
*/
Driver.prototype.connectOuterAndDispose = function() {
this.channel_.connect();
window.setTimeout(goog.bind(this.disposeAndCheck_, this), 2000);
};
/**
* Dispose the cross-page channel. Check that the transport was also
* disposed, and allow to run briefly to make sure no timers which will cause
* failures are still running.
*/
Driver.prototype.disposeAndCheck_ = function() {
assertFalse(this.channel_.isConnected());
var transport = this.channel_.transport_;
this.channel_.dispose();
assertNull(this.channel_.transport_);
assertTrue(this.channel_.isDisposed());
assertTrue(transport.isDisposed());
// Let any errors caused by erroneous retries happen.
window.setTimeout(goog.bind(asyncTestCase.continueTesting, asyncTestCase),
2000);
};
</script>
<!-- Debug box. -->
<div style="position:absolute; float: right; top: 10px; right: 10px; width: 500px">
Debug [<a href="#" onclick="document.getElementById('debugDiv').innerHTML = '';">clear</a>]: <br/>
<div id="debugDiv" style="border: 1px #000000 solid; font-size:xx-small; background: #fff;"></div>
</div>
</body>
</html>
|
wechat/app/views/Application/index.html | jacktuan2000/playstudy | #{extends 'main.html' /}
#{set title:'Home' /}
#{welcome /} |
sql/share/charsets/languages.html | kbauskar/percona-server | #!/bin/sh
# Copyright (C) 2003 MySQL AB
# Use is subject to license terms
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
#<pre>
(
echo "DROP TABLE lang;"
echo "CREATE TABLE lang (lang varchar(128), letters text character set utf8);"
(
grep -v "^#" << END
#
Greenlandic ÁÂÃÊÍÎÔÚÛáâãêíîôúûĨĩĸŨũ
#Use of these letters was abolished in a spelling reform in 1973:
#Greenlandic ÅÆØåæø
#Characters not found in the UCS:
# K LATIN CAPITAL LETTER KRA
#############################################################
#Basque ÑÜñüŔŕ
#Characters not found in the UCS:
# D LATIN CAPITAL LETTER D WITH MACRON
# d LATIN SMALL LETTER D WITH MACRON
# L LATIN CAPITAL LETTER L WITH MACRON
# l LATIN SMALL LETTER L WITH MACRON
# T LATIN CAPITAL LETTER T WITH MACRON
# t LATIN SMALL LETTER T WITH MACRON
#############################################################
#Maltese #ÀÁÂÈÉÊÌÍÎÒÓÔÙÚÛ#àáâèéêìíîòÓôùúû#ĊċĠġĦħŻżʼ
#BosnianCyr ЂЈЉЊЋЏАБВГДЕЖЗИКЛМНОПРСТУФХЦЧШабвгдежзиклмнопрстуфхцчшђјљњћџ
#Scots A
#Scots1 ƷȜȝʒ
###########################################
#### Hiragana 3040-309F
Hiragana ぁあぃいぅうぇえぉおかがきぎくぐけげこごさざしじすずせぜそぞただちぢっつづてでとどなにぬねのはばぱひびぴふぶぷへべぺほぼぽまみむめもゃやゅゆょよらりるれろゎわゐゑをん
Hiragana1 ゔ゙゚
Hiragana2 ゛゜ゝゞ
#### Katakana 30A0-30FF
Katakana ァアィイゥウェエォオカガキギクグケゲコゴサザシジスズセゼソゾタダチヂッツヅテデトドナニヌネノハバパヒビピフブプヘベペホボポマミムメモャヤュユョヨラリルレロヮワヰヱヲンヴヵヶ
Katakana1 ヷヸヹヺ
Katakana2 ・ーヽヾ
############################################
Albanian ÂÇËâçë
Bosnian ĆćČčĐ𩹮ž
Breton ÂÊÑÙÜâêñùü
Catalan ÀÇÈÉÍÏÒÓÚÜàçèéíïòóúü
#Catalan1 ·Ŀŀ
Croatian ĆćČčĐ𩹮ž
CroatianLig DZDzdzDŽDždžLJLjljNJNjnj
Czech ÁÉÍÓÚÝáéíóúýČčĎďĚěŇňŘřŠšŤťŮůŽž
Danish ÁÄÅÆÉÓÖØÜáäåæéóöøü
Dutch ÀÂÄÆÇÈÉÊËÎÏÑÒÓÔÖÙÚÛÜàâäæçèéêëîïñòóôöùúûü
Esperanto ĈĉĜĝĤĥĴĵŜŝŬŭ
Estonian ÄÕÖÜäõöüŠšŽž
Faroese ÅÆÐÓÖØÚÝåæðóöøúý
Finnish ÄÅÖÜäåöü
#Finnish1 ŠšŽž
French(limited) ÀÂÆÇÈÉÊËÎÏÑÔÙÛàâæçèéêëîïñôùûÿ
French ŒœŸ
German ÄÖÜßäöü
Hungarian ÁÉÍÓÖÚÜáéíóöúüŐőŰű
Icelandic ÁÆÉÍÐÓÖÚÝÞáæéíðóöúýþ
Italian ÀÈÉÌÍÏÒÓÙÚàèéìíïòóùú
#Latin A
Latvian ĀāČčĒēĢģĪīĶķĻļŅņŠšŪūŽž
Lithuanian ĄąČčĖėĘęĮįŠšŪūŲųŽž
Norwegian ÅÆØåæø
Polish ÓóĄąĆćĘꣳŃńŚśŹźŻż
Portuguese ÀÁÂÃÇÉÊÍÓÔÕÚÜàáâãçéêíóôõúü
#http://en.wikipedia.org/wiki/Special_Romanian_Unicode_characters
Romanian ÂÎâîĂăȘșȚț
Romanian(ErrorST) ÂÎâîĂ㪺Ţţ
Slovak ÁÄÉÍÓÔÚÝáäéíóôúýČčĎďĹ弾ŇňŔ੹ŤťŽž
Slovene ČčŠšŽž
Sorbian-Lower ĆćČčĚ죳ŃńŘřŚśŠšŹźŽž
Sorbian-Upper ÓóĆćČčĚ죳ŃńŘřŠšŽž
Spanish ÁÉÍÑÓÚÜáéíñóúü
Swedish ÄÅÖäåö
Turkish ÂÇÖÛÜâçöûüĞğİı
Welsh ÀÁÂÄÈÉÊËÌÍÎÏÒÓÔÖÙÚÛÜÝàáâäèéêëìíîïòóôöùúûüýÿŴŵŶŷŸẀẁẂẃẄẅỲỳ
##################################
Belarusian ЁІЎАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяёіў
Bulgarian АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЬЮЯабвгдежзийклмнопрстуфхцчшщъьюя
Bulgarian1 ЀҭѐѝѢѣѪѫ
Macedonian ЃЅЈЉЊЌЏАБВГДЕЖЗИКЛМНОПРСТУФХЦЧШабвгдежзиклмнопрстуфхцчшѓѕјљњќџ
Russian ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё
RussianOLD ІіѢѣѲѳѴѵ
Serbian ЂЈЉЊЋЏАБВГДЕЖЗИКЛМНОПРСТУФХЦЧШабвгдежзиклмнопрстуфхцчшђјљњћџ
Ukrainian ЄІЇАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЬЭЮЯабвгдежзийклмнопрстуфхцчшщьэюяєіїҐґ
##################################
Armenian ԱԲԳԴԵԶԷԸԹԺԻԼԽԾԿՁՂՃՄՅՆՇՈՉՊՋՌՍՎՏՑՒՓՔՕՖ՛՜՝՞՟աբգդեֆ։
#Armenian1 ՚֊
#Characters not found in the UCS:
# ARMENIAN ETERNITY SIGN
#
GeorgianOld ႠႡႢႣႤႥႦႧႨႩႪႫႬႭႮႯႰႱႲႳႴႵႶႷႸႹႺႻႼႽႾႿჀჁჂჃჄჅ
Georgian აბგდევზთიკლმნოპჟრსტუფქღყშჩცძწჭხჯჰ
GeorgianArc ჱჲჳჴჵჶ
GeorgianPunc ჻
#
GreekExt1 ΄΅Ά·ΈΉΊ»Ό½ΎΏΐ
Greek ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρστυφχψω
GreekExt2 ΪΫάέήίΰϊϋόύώ
GreekExt4 ς
#
Hebrew אבגדהוזחטיךכלםמןנסעףפץצקרשת
##################################
#Abaza
#Abkhaz
#Adyghe
#Agul *
#(Aisor)
#Akhvakh *
#(?lvdalska)
#(Andi) *
#(Aragonese)
#Archi *
#Arumanian
#(Arvanite)
#Asturian
#Avar
#Azerbaijani
#(Bagulal) *
#Balkar
#Bashkir
#Basque !
#Bats *
#Bezhta *
#(Botlikh) *
#Budukh *
#(Chamalal)
#Chechen
#Chuvash
#Cornish !
#(Corsican)
#Dargwa
#Erzya
#(Franco-Proven?al)
#(Frisian, East)
#(Frisian, North)
#Frisian, West
#Friulian
#Gagauz
#Gaelic, Irish !
#Gaelic, Manx !
#Gaelic, Scottish !
#Galician !
#(German, Low) !
#(German, Swiss) !
#Godoberi *
#(Hinukh) *
#(Hunzib) *
#Ingrian
#Ingush
#Istro-Romanian
#(Judeo-Georgian)
#(Judeo-Kurdish)
#(Judeo-Tati)
#Kabardian
#Kalmyk
#Karachay
#(Karaim)
#(Karata) *
#Karelian
#Kashubian
#Kazakh
#Khinalug
#(Khvarshi) *
#(Kirmanji)
#Komi
#Komi-Permyak
#(Kryts)
#Kumyk
#(Kurdish)
#(Ladin)
#(Ladino)
#Lak
#Laz
#Lezgian
#Livonian
#(Ludian)
#Luxemburgish !
#Mari, Hill
#Mari, Meadow
#Megleno-Romanian
#(Mingrelian)
#Moksha
#Moldavian
#Nenets, Tundra
#Nogai
#Occitan
#Old Church Slavonic
#(Olonets)
#Ossetian
#(Romani)
#Romansch
#(Rusyn)
#Rutul
#Sami, Inari
#Sami, Kildin
#Sami, Lule
#Sami, Northern
#Sami, Skolt
#Sami, Southern
#(Sami, Ter) *
#(Sami, Ume) *
#(Sardinian) *
#Scots !
#Svan
#Tabasaran
#(Talysh)
#Tatar, Crimean
#Tatar, Kazan
#Tati
#(Tindi) *
#(Tsakonian) *
#Tsakhur *
#(Tsez) *
#(Turkish, Crimean)
#Ubykh *
#Udi
#Udmurt
#(V?mhusm?l)
#Vepsian
#Votic
#(Walloon)
#(Yiddish)
################################
# 4 Gaelic-new-orthography
# 4 Frisian
# 3 Rhaeto-Romanic
# 2 S&AACUTEmi-with-restrictions
# 1 Rhjaeto-Romanic
# 1 Gaelic-old-and-new-orthographies
END
) |
while read a b
do
c=`echo $b | replace "&#x" "" ";" ""`
printf "INSERT INTO lang VALUES ('$a',_ucs2 X'$c');\n"
done
) | mysql -f test
#mysql test << END
#SELECT * FROM lang WHERE CONVERT(letters USING latin1) NOT LIKE _binary'%?%';
#SELECT * FROM lang WHERE CONVERT(letters USING latin2) NOT LIKE _binary'%?%';
#END
list="big5 dec8 cp850 hp8 koi8r latin1 latin2 swe7 ascii ujis sjis hebrew euckr koi8u gb2312 greek cp1250 gbk latin5 armscii8 cp866 keybcs2 macce macroman cp852 latin7 cp1251 cp1256 cp1257 geostd8"
for p in $list
do
echo "-----------------"
echo $p:
mysql -sss test << END
SELECT lang FROM lang WHERE CONVERT(letters USING $p) NOT LIKE _binary'%?%' ORDER BY lang;
END
done
|
software/externals/sam/CMSIS/Device/ATMEL/sam3xa/html/EMAC.html | MITHyperloopTeam/software_core | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>SAM3XA EMAC</title>
<link rel="stylesheet" type="text/css" href="css/html.css" media="all" />
</head>
<body id="abstract">
<div id="container">
<div id="content">
<a id="EMAC"></a>
<h1>SAM3XA EMAC</h1>
<a id="EMAC__User_Interface"></a>
<h2>Ethernet MAC 10/100 (EMAC) User Interface</h2>
<!--As per 6119I programmer datasheet.-->
<h3>Registers</h3>
<table class="registers">
<caption>Register Mapping</caption>
<thead>
<tr>
<th class="address">Address</th>
<th class="description">Register</th>
<th class="name">Name</th>
<th class="access">Access</th>
<th class="reset">Reset</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td class="address" id="address_0x400B0000">0x400B0000</td>
<td class="description">Network Control Register</td>
<td class="name">
<a href="#EMAC_NCR" title="Network Control Register" class="one_click_away">EMAC_NCR</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B0004">0x400B0004</td>
<td class="description">Network Configuration Register</td>
<td class="name">
<a href="#EMAC_NCFGR" title="Network Configuration Register" class="one_click_away">EMAC_NCFGR</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000800</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B0008">0x400B0008</td>
<td class="description">Network Status Register</td>
<td class="name">
<a href="#EMAC_NSR" title="Network Status Register" class="one_click_away">EMAC_NSR</a>
</td>
<td class="access">read-only</td>
<td class="address">-</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B0014">0x400B0014</td>
<td class="description">Transmit Status Register</td>
<td class="name">
<a href="#EMAC_TSR" title="Transmit Status Register" class="one_click_away">EMAC_TSR</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B0018">0x400B0018</td>
<td class="description">Receive Buffer Queue Pointer Register</td>
<td class="name">
<a href="#EMAC_RBQP" title="Receive Buffer Queue Pointer Register" class="one_click_away">EMAC_RBQP</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B001C">0x400B001C</td>
<td class="description">Transmit Buffer Queue Pointer Register</td>
<td class="name">
<a href="#EMAC_TBQP" title="Transmit Buffer Queue Pointer Register" class="one_click_away">EMAC_TBQP</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B0020">0x400B0020</td>
<td class="description">Receive Status Register</td>
<td class="name">
<a href="#EMAC_RSR" title="Receive Status Register" class="one_click_away">EMAC_RSR</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B0024">0x400B0024</td>
<td class="description">Interrupt Status Register</td>
<td class="name">
<a href="#EMAC_ISR" title="Interrupt Status Register" class="one_click_away">EMAC_ISR</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B0028">0x400B0028</td>
<td class="description">Interrupt Enable Register</td>
<td class="name">
<a href="#EMAC_IER" title="Interrupt Enable Register" class="one_click_away">EMAC_IER</a>
</td>
<td class="access">write-only</td>
<td class="address">-</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B002C">0x400B002C</td>
<td class="description">Interrupt Disable Register</td>
<td class="name">
<a href="#EMAC_IDR" title="Interrupt Disable Register" class="one_click_away">EMAC_IDR</a>
</td>
<td class="access">write-only</td>
<td class="address">-</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B0030">0x400B0030</td>
<td class="description">Interrupt Mask Register</td>
<td class="name">
<a href="#EMAC_IMR" title="Interrupt Mask Register" class="one_click_away">EMAC_IMR</a>
</td>
<td class="access">read-only</td>
<td class="address">0x00003FFF</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B0034">0x400B0034</td>
<td class="description">Phy Maintenance Register</td>
<td class="name">
<a href="#EMAC_MAN" title="Phy Maintenance Register" class="one_click_away">EMAC_MAN</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B0038">0x400B0038</td>
<td class="description">Pause Time Register</td>
<td class="name">
<a href="#EMAC_PTR" title="Pause Time Register" class="one_click_away">EMAC_PTR</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B003C">0x400B003C</td>
<td class="description">Pause Frames Received Register</td>
<td class="name">
<a href="#EMAC_PFR" title="Pause Frames Received Register" class="one_click_away">EMAC_PFR</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B0040">0x400B0040</td>
<td class="description">Frames Transmitted Ok Register</td>
<td class="name">
<a href="#EMAC_FTO" title="Frames Transmitted Ok Register" class="one_click_away">EMAC_FTO</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B0044">0x400B0044</td>
<td class="description">Single Collision Frames Register</td>
<td class="name">
<a href="#EMAC_SCF" title="Single Collision Frames Register" class="one_click_away">EMAC_SCF</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B0048">0x400B0048</td>
<td class="description">Multiple Collision Frames Register</td>
<td class="name">
<a href="#EMAC_MCF" title="Multiple Collision Frames Register" class="one_click_away">EMAC_MCF</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B004C">0x400B004C</td>
<td class="description">Frames Received Ok Register</td>
<td class="name">
<a href="#EMAC_FRO" title="Frames Received Ok Register" class="one_click_away">EMAC_FRO</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B0050">0x400B0050</td>
<td class="description">Frame Check Sequence Errors Register</td>
<td class="name">
<a href="#EMAC_FCSE" title="Frame Check Sequence Errors Register" class="one_click_away">EMAC_FCSE</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B0054">0x400B0054</td>
<td class="description">Alignment Errors Register</td>
<td class="name">
<a href="#EMAC_ALE" title="Alignment Errors Register" class="one_click_away">EMAC_ALE</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B0058">0x400B0058</td>
<td class="description">Deferred Transmission Frames Register</td>
<td class="name">
<a href="#EMAC_DTF" title="Deferred Transmission Frames Register" class="one_click_away">EMAC_DTF</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B005C">0x400B005C</td>
<td class="description">Late Collisions Register</td>
<td class="name">
<a href="#EMAC_LCOL" title="Late Collisions Register" class="one_click_away">EMAC_LCOL</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B0060">0x400B0060</td>
<td class="description">Excessive Collisions Register</td>
<td class="name">
<a href="#EMAC_ECOL" title="Excessive Collisions Register" class="one_click_away">EMAC_ECOL</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B0064">0x400B0064</td>
<td class="description">Transmit Underrun Errors Register</td>
<td class="name">
<a href="#EMAC_TUND" title="Transmit Underrun Errors Register" class="one_click_away">EMAC_TUND</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B0068">0x400B0068</td>
<td class="description">Carrier Sense Errors Register</td>
<td class="name">
<a href="#EMAC_CSE" title="Carrier Sense Errors Register" class="one_click_away">EMAC_CSE</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B006C">0x400B006C</td>
<td class="description">Receive Resource Errors Register</td>
<td class="name">
<a href="#EMAC_RRE" title="Receive Resource Errors Register" class="one_click_away">EMAC_RRE</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B0070">0x400B0070</td>
<td class="description">Receive Overrun Errors Register</td>
<td class="name">
<a href="#EMAC_ROV" title="Receive Overrun Errors Register" class="one_click_away">EMAC_ROV</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B0074">0x400B0074</td>
<td class="description">Receive Symbol Errors Register</td>
<td class="name">
<a href="#EMAC_RSE" title="Receive Symbol Errors Register" class="one_click_away">EMAC_RSE</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B0078">0x400B0078</td>
<td class="description">Excessive Length Errors Register</td>
<td class="name">
<a href="#EMAC_ELE" title="Excessive Length Errors Register" class="one_click_away">EMAC_ELE</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B007C">0x400B007C</td>
<td class="description">Receive Jabbers Register</td>
<td class="name">
<a href="#EMAC_RJA" title="Receive Jabbers Register" class="one_click_away">EMAC_RJA</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B0080">0x400B0080</td>
<td class="description">Undersize Frames Register</td>
<td class="name">
<a href="#EMAC_USF" title="Undersize Frames Register" class="one_click_away">EMAC_USF</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B0084">0x400B0084</td>
<td class="description">SQE Test Errors Register</td>
<td class="name">
<a href="#EMAC_STE" title="SQE Test Errors Register" class="one_click_away">EMAC_STE</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B0088">0x400B0088</td>
<td class="description">Received Length Field Mismatch Register</td>
<td class="name">
<a href="#EMAC_RLE" title="Received Length Field Mismatch Register" class="one_click_away">EMAC_RLE</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B0090">0x400B0090</td>
<td class="description">Hash Register Bottom [31:0] Register</td>
<td class="name">
<a href="#EMAC_HRB" title="Hash Register Bottom [31:0] Register" class="one_click_away">EMAC_HRB</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B0094">0x400B0094</td>
<td class="description">Hash Register Top [63:32] Register</td>
<td class="name">
<a href="#EMAC_HRT" title="Hash Register Top [63:32] Register" class="one_click_away">EMAC_HRT</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B0098">0x400B0098</td>
<td class="description">Specific Address 1 Bottom Register</td>
<td class="name">
<a href="#EMAC_SA1B" title="Specific Address 1 Bottom Register" class="one_click_away">EMAC_SA1B</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B009C">0x400B009C</td>
<td class="description">Specific Address 1 Top Register</td>
<td class="name">
<a href="#EMAC_SA1T" title="Specific Address 1 Top Register" class="one_click_away">EMAC_SA1T</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B00A0">0x400B00A0</td>
<td class="description">Specific Address 2 Bottom Register</td>
<td class="name">
<a href="#EMAC_SA2B" title="Specific Address 2 Bottom Register" class="one_click_away">EMAC_SA2B</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B00A4">0x400B00A4</td>
<td class="description">Specific Address 2 Top Register</td>
<td class="name">
<a href="#EMAC_SA2T" title="Specific Address 2 Top Register" class="one_click_away">EMAC_SA2T</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B00A8">0x400B00A8</td>
<td class="description">Specific Address 3 Bottom Register</td>
<td class="name">
<a href="#EMAC_SA3B" title="Specific Address 3 Bottom Register" class="one_click_away">EMAC_SA3B</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B00AC">0x400B00AC</td>
<td class="description">Specific Address 3 Top Register</td>
<td class="name">
<a href="#EMAC_SA3T" title="Specific Address 3 Top Register" class="one_click_away">EMAC_SA3T</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B00B0">0x400B00B0</td>
<td class="description">Specific Address 4 Bottom Register</td>
<td class="name">
<a href="#EMAC_SA4B" title="Specific Address 4 Bottom Register" class="one_click_away">EMAC_SA4B</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B00B4">0x400B00B4</td>
<td class="description">Specific Address 4 Top Register</td>
<td class="name">
<a href="#EMAC_SA4T" title="Specific Address 4 Top Register" class="one_click_away">EMAC_SA4T</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="even">
<td class="address" id="address_0x400B00B8">0x400B00B8</td>
<td class="description">Type ID Checking Register</td>
<td class="name">
<a href="#EMAC_TID" title="Type ID Checking Register" class="one_click_away">EMAC_TID</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
<tr class="odd">
<td class="address" id="address_0x400B00C0">0x400B00C0</td>
<td class="description">User Input/Output Register</td>
<td class="name">
<a href="#EMAC_USRIO" title="User Input/Output Register" class="one_click_away">EMAC_USRIO</a>
</td>
<td class="access">read-write</td>
<td class="address">0x00000000</td>
</tr>
</tbody>
</table>
<h3>Register Fields</h3>
<h4 id="EMAC_NCR">EMAC Network Control Register</h4>
<p><strong>Name</strong>: EMAC_NCR</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0000</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#EMAC_NCR__THALT" title="Transmit halt">THALT</a>
</td>
<td colspan="1">
<a href="#EMAC_NCR__TSTART" title="Start transmission">TSTART</a>
</td>
<td colspan="1">
<a href="#EMAC_NCR__BP" title="Back pressure">BP</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="1">
<a href="#EMAC_NCR__WESTAT" title="Write enable for statistics registers">WESTAT</a>
</td>
<td colspan="1">
<a href="#EMAC_NCR__INCSTAT" title="Increment statistics registers">INCSTAT</a>
</td>
<td colspan="1">
<a href="#EMAC_NCR__CLRSTAT" title="Clear statistics registers">CLRSTAT</a>
</td>
<td colspan="1">
<a href="#EMAC_NCR__MPE" title="Management port enable">MPE</a>
</td>
<td colspan="1">
<a href="#EMAC_NCR__TE" title="Transmit enable">TE</a>
</td>
<td colspan="1">
<a href="#EMAC_NCR__RE" title="Receive enable">RE</a>
</td>
<td colspan="1">
<a href="#EMAC_NCR__LLB" title="Loopback local">LLB</a>
</td>
<td colspan="1">
<a href="#EMAC_NCR__LB" title="LoopBack">LB</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_NCR__LB"><strong>LB</strong>: LoopBack</li>
<p>-</p>
<li id="EMAC_NCR__LLB"><strong>LLB</strong>: Loopback local</li>
<p>-</p>
<li id="EMAC_NCR__RE"><strong>RE</strong>: Receive enable</li>
<p>-</p>
<li id="EMAC_NCR__TE"><strong>TE</strong>: Transmit enable</li>
<p>-</p>
<li id="EMAC_NCR__MPE"><strong>MPE</strong>: Management port enable</li>
<p>-</p>
<li id="EMAC_NCR__CLRSTAT"><strong>CLRSTAT</strong>: Clear statistics registers</li>
<p>-</p>
<li id="EMAC_NCR__INCSTAT"><strong>INCSTAT</strong>: Increment statistics registers</li>
<p>-</p>
<li id="EMAC_NCR__WESTAT"><strong>WESTAT</strong>: Write enable for statistics registers</li>
<p>-</p>
<li id="EMAC_NCR__BP"><strong>BP</strong>: Back pressure</li>
<p>-</p>
<li id="EMAC_NCR__TSTART"><strong>TSTART</strong>: Start transmission</li>
<p>-</p>
<li id="EMAC_NCR__THALT"><strong>THALT</strong>: Transmit halt</li>
<p>-</p>
</ul>
<h4 id="EMAC_NCFGR">EMAC Network Configuration Register</h4>
<p><strong>Name</strong>: EMAC_NCFGR</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0004</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#EMAC_NCFGR__IRXFCS" title="Ignore RX FCS">IRXFCS</a>
</td>
<td colspan="1">
<a href="#EMAC_NCFGR__EFRHD" title="">EFRHD</a>
</td>
<td colspan="1">
<a href="#EMAC_NCFGR__DRFCS" title="Discard Receive FCS">DRFCS</a>
</td>
<td colspan="1">
<a href="#EMAC_NCFGR__RLCE" title="Receive Length field Checking Enable">RLCE</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="2">
<a href="#EMAC_NCFGR__RBOF" title="Receive Buffer Offset">RBOF</a>
</td>
<td colspan="1">
<a href="#EMAC_NCFGR__PAE" title="Pause Enable">PAE</a>
</td>
<td colspan="1">
<a href="#EMAC_NCFGR__RTY" title="Retry test">RTY</a>
</td>
<td colspan="2">
<a href="#EMAC_NCFGR__CLK" title="MDC clock divider">CLK</a>
</td>
<td>-</td>
<td colspan="1">
<a href="#EMAC_NCFGR__BIG" title="Receive 1536 bytes frames">BIG</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="1">
<a href="#EMAC_NCFGR__UNI" title="Unicast Hash Enable">UNI</a>
</td>
<td colspan="1">
<a href="#EMAC_NCFGR__MTI" title="Multicast Hash Enable">MTI</a>
</td>
<td colspan="1">
<a href="#EMAC_NCFGR__NBC" title="No Broadcast">NBC</a>
</td>
<td colspan="1">
<a href="#EMAC_NCFGR__CAF" title="Copy All Frames">CAF</a>
</td>
<td colspan="1">
<a href="#EMAC_NCFGR__JFRAME" title="Jumbo Frames">JFRAME</a>
</td>
<td>-</td>
<td colspan="1">
<a href="#EMAC_NCFGR__FD" title="Full Duplex">FD</a>
</td>
<td colspan="1">
<a href="#EMAC_NCFGR__SPD" title="Speed">SPD</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_NCFGR__SPD"><strong>SPD</strong>: Speed</li>
<p>-</p>
<li id="EMAC_NCFGR__FD"><strong>FD</strong>: Full Duplex</li>
<p>-</p>
<li id="EMAC_NCFGR__JFRAME"><strong>JFRAME</strong>: Jumbo Frames</li>
<p>-</p>
<li id="EMAC_NCFGR__CAF"><strong>CAF</strong>: Copy All Frames</li>
<p>-</p>
<li id="EMAC_NCFGR__NBC"><strong>NBC</strong>: No Broadcast</li>
<p>-</p>
<li id="EMAC_NCFGR__MTI"><strong>MTI</strong>: Multicast Hash Enable</li>
<p>-</p>
<li id="EMAC_NCFGR__UNI"><strong>UNI</strong>: Unicast Hash Enable</li>
<p>-</p>
<li id="EMAC_NCFGR__BIG"><strong>BIG</strong>: Receive 1536 bytes frames</li>
<p>-</p>
<li id="EMAC_NCFGR__CLK"><strong>CLK</strong>: MDC clock divider<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x0</td><td class="name">MCK_8</td><td class="description">MCK divided by 8 (MCK up to 20 MHz).</td></tr><tr class="even"><td class="value">0x1</td><td class="name">MCK_16</td><td class="description">MCK divided by 16 (MCK up to 40 MHz).</td></tr><tr class="odd"><td class="value">0x2</td><td class="name">MCK_32</td><td class="description">MCK divided by 32 (MCK up to 80 MHz).</td></tr><tr class="even"><td class="value">0x3</td><td class="name">MCK_64</td><td class="description">MCK divided by 64 (MCK up to 160 MHz).</td></tr></tbody></table></li>
<li id="EMAC_NCFGR__RTY"><strong>RTY</strong>: Retry test</li>
<p>-</p>
<li id="EMAC_NCFGR__PAE"><strong>PAE</strong>: Pause Enable</li>
<p>-</p>
<li id="EMAC_NCFGR__RBOF"><strong>RBOF</strong>: Receive Buffer Offset<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x0</td><td class="name">OFFSET_0</td><td class="description">No offset from start of receive buffer.</td></tr><tr class="even"><td class="value">0x1</td><td class="name">OFFSET_1</td><td class="description">One-byte offset from start of receive buffer.</td></tr><tr class="odd"><td class="value">0x2</td><td class="name">OFFSET_2</td><td class="description">Two-byte offset from start of receive buffer.</td></tr><tr class="even"><td class="value">0x3</td><td class="name">OFFSET_3</td><td class="description">Three-byte offset from start of receive buffer.</td></tr></tbody></table></li>
<li id="EMAC_NCFGR__RLCE"><strong>RLCE</strong>: Receive Length field Checking Enable</li>
<p>-</p>
<li id="EMAC_NCFGR__DRFCS"><strong>DRFCS</strong>: Discard Receive FCS</li>
<p>-</p>
<li id="EMAC_NCFGR__EFRHD">
<strong>EFRHD</strong>
</li>
<p>-</p>
<li id="EMAC_NCFGR__IRXFCS"><strong>IRXFCS</strong>: Ignore RX FCS</li>
<p>-</p>
</ul>
<h4 id="EMAC_NSR">EMAC Network Status Register</h4>
<p><strong>Name</strong>: EMAC_NSR</p>
<p><strong>Access</strong>: read-only</p>
<p><strong>Address</strong>: 0x400B0008</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#EMAC_NSR__IDLE" title="">IDLE</a>
</td>
<td colspan="1">
<a href="#EMAC_NSR__MDIO" title="">MDIO</a>
</td>
<td>-</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_NSR__MDIO">
<strong>MDIO</strong>
</li>
<p>-</p>
<li id="EMAC_NSR__IDLE">
<strong>IDLE</strong>
<table class="values">
<thead>
<tr>
<th>Value</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td class="value">0</td>
<td class="name">-</td>
<td class="description">The PHY logic is running.</td>
</tr>
<tr class="even">
<td class="value">1</td>
<td class="name">-</td>
<td class="description">The PHY management logic is idle (i.e., has completed).</td>
</tr>
</tbody>
</table>
</li>
</ul>
<h4 id="EMAC_TSR">EMAC Transmit Status Register</h4>
<p><strong>Name</strong>: EMAC_TSR</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0014</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td colspan="1">
<a href="#EMAC_TSR__UND" title="Transmit Underrun">UND</a>
</td>
<td colspan="1">
<a href="#EMAC_TSR__COMP" title="Transmit Complete">COMP</a>
</td>
<td colspan="1">
<a href="#EMAC_TSR__BEX" title="Buffers exhausted mid frame">BEX</a>
</td>
<td colspan="1">
<a href="#EMAC_TSR__TGO" title="Transmit Go">TGO</a>
</td>
<td colspan="1">
<a href="#EMAC_TSR__RLES" title="Retry Limit exceeded">RLES</a>
</td>
<td colspan="1">
<a href="#EMAC_TSR__COL" title="Collision Occurred">COL</a>
</td>
<td colspan="1">
<a href="#EMAC_TSR__UBR" title="Used Bit Read">UBR</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_TSR__UBR"><strong>UBR</strong>: Used Bit Read</li>
<p>-</p>
<li id="EMAC_TSR__COL"><strong>COL</strong>: Collision Occurred</li>
<p>-</p>
<li id="EMAC_TSR__RLES"><strong>RLES</strong>: Retry Limit exceeded</li>
<p>-</p>
<li id="EMAC_TSR__TGO"><strong>TGO</strong>: Transmit Go</li>
<p>-</p>
<li id="EMAC_TSR__BEX"><strong>BEX</strong>: Buffers exhausted mid frame</li>
<p>-</p>
<li id="EMAC_TSR__COMP"><strong>COMP</strong>: Transmit Complete</li>
<p>-</p>
<li id="EMAC_TSR__UND"><strong>UND</strong>: Transmit Underrun</li>
<p>-</p>
</ul>
<h4 id="EMAC_RBQP">EMAC Receive Buffer Queue Pointer Register</h4>
<p><strong>Name</strong>: EMAC_RBQP</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0018</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_RBQP__ADDR" title="Receive buffer queue pointer address">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_RBQP__ADDR" title="Receive buffer queue pointer address">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_RBQP__ADDR" title="Receive buffer queue pointer address">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="6">
<a href="#EMAC_RBQP__ADDR" title="Receive buffer queue pointer address">ADDR</a>
</td>
<td>-</td>
<td>-</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_RBQP__ADDR"><strong>ADDR</strong>: Receive buffer queue pointer address</li>
<p>-</p>
</ul>
<h4 id="EMAC_TBQP">EMAC Transmit Buffer Queue Pointer Register</h4>
<p><strong>Name</strong>: EMAC_TBQP</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B001C</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_TBQP__ADDR" title="Transmit buffer queue pointer address">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_TBQP__ADDR" title="Transmit buffer queue pointer address">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_TBQP__ADDR" title="Transmit buffer queue pointer address">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="6">
<a href="#EMAC_TBQP__ADDR" title="Transmit buffer queue pointer address">ADDR</a>
</td>
<td>-</td>
<td>-</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_TBQP__ADDR"><strong>ADDR</strong>: Transmit buffer queue pointer address</li>
<p>-</p>
</ul>
<h4 id="EMAC_RSR">EMAC Receive Status Register</h4>
<p><strong>Name</strong>: EMAC_RSR</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0020</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#EMAC_RSR__OVR" title="Receive Overrun">OVR</a>
</td>
<td colspan="1">
<a href="#EMAC_RSR__REC" title="Frame Received">REC</a>
</td>
<td colspan="1">
<a href="#EMAC_RSR__BNA" title="Buffer Not Available">BNA</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_RSR__BNA"><strong>BNA</strong>: Buffer Not Available</li>
<p>-</p>
<li id="EMAC_RSR__REC"><strong>REC</strong>: Frame Received</li>
<p>-</p>
<li id="EMAC_RSR__OVR"><strong>OVR</strong>: Receive Overrun</li>
<p>-</p>
</ul>
<h4 id="EMAC_ISR">EMAC Interrupt Status Register</h4>
<p><strong>Name</strong>: EMAC_ISR</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0024</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#EMAC_ISR__PTZ" title="Pause Time Zero">PTZ</a>
</td>
<td colspan="1">
<a href="#EMAC_ISR__PFRE" title="Pause Frame Received">PFRE</a>
</td>
<td colspan="1">
<a href="#EMAC_ISR__HRESP" title="Hresp not OK">HRESP</a>
</td>
<td colspan="1">
<a href="#EMAC_ISR__ROVR" title="Receive Overrun">ROVR</a>
</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="1">
<a href="#EMAC_ISR__TCOMP" title="Transmit Complete">TCOMP</a>
</td>
<td colspan="1">
<a href="#EMAC_ISR__TXERR" title="Transmit Error">TXERR</a>
</td>
<td colspan="1">
<a href="#EMAC_ISR__RLEX" title="Retry Limit Exceeded">RLEX</a>
</td>
<td colspan="1">
<a href="#EMAC_ISR__TUND" title="Ethernet Transmit Buffer Underrun">TUND</a>
</td>
<td colspan="1">
<a href="#EMAC_ISR__TXUBR" title="Transmit Used Bit Read">TXUBR</a>
</td>
<td colspan="1">
<a href="#EMAC_ISR__RXUBR" title="Receive Used Bit Read">RXUBR</a>
</td>
<td colspan="1">
<a href="#EMAC_ISR__RCOMP" title="Receive Complete">RCOMP</a>
</td>
<td colspan="1">
<a href="#EMAC_ISR__MFD" title="Management Frame Done">MFD</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_ISR__MFD"><strong>MFD</strong>: Management Frame Done</li>
<p>-</p>
<li id="EMAC_ISR__RCOMP"><strong>RCOMP</strong>: Receive Complete</li>
<p>-</p>
<li id="EMAC_ISR__RXUBR"><strong>RXUBR</strong>: Receive Used Bit Read</li>
<p>-</p>
<li id="EMAC_ISR__TXUBR"><strong>TXUBR</strong>: Transmit Used Bit Read</li>
<p>-</p>
<li id="EMAC_ISR__TUND"><strong>TUND</strong>: Ethernet Transmit Buffer Underrun</li>
<p>-</p>
<li id="EMAC_ISR__RLEX"><strong>RLEX</strong>: Retry Limit Exceeded</li>
<p>-</p>
<li id="EMAC_ISR__TXERR"><strong>TXERR</strong>: Transmit Error</li>
<p>-</p>
<li id="EMAC_ISR__TCOMP"><strong>TCOMP</strong>: Transmit Complete</li>
<p>-</p>
<li id="EMAC_ISR__ROVR"><strong>ROVR</strong>: Receive Overrun</li>
<p>-</p>
<li id="EMAC_ISR__HRESP"><strong>HRESP</strong>: Hresp not OK</li>
<p>-</p>
<li id="EMAC_ISR__PFRE"><strong>PFRE</strong>: Pause Frame Received</li>
<p>-</p>
<li id="EMAC_ISR__PTZ"><strong>PTZ</strong>: Pause Time Zero</li>
<p>-</p>
</ul>
<h4 id="EMAC_IER">EMAC Interrupt Enable Register</h4>
<p><strong>Name</strong>: EMAC_IER</p>
<p><strong>Access</strong>: write-only</p>
<p><strong>Address</strong>: 0x400B0028</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#EMAC_IER__PTZ" title="Pause Time Zero">PTZ</a>
</td>
<td colspan="1">
<a href="#EMAC_IER__PFR" title="Pause Frame Received">PFR</a>
</td>
<td colspan="1">
<a href="#EMAC_IER__HRESP" title="Hresp not OK">HRESP</a>
</td>
<td colspan="1">
<a href="#EMAC_IER__ROVR" title="Receive Overrun">ROVR</a>
</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="1">
<a href="#EMAC_IER__TCOMP" title="Transmit Complete">TCOMP</a>
</td>
<td colspan="1">
<a href="#EMAC_IER__TXERR" title="">TXERR</a>
</td>
<td colspan="1">
<a href="#EMAC_IER__RLE" title="Retry Limit Exceeded">RLE</a>
</td>
<td colspan="1">
<a href="#EMAC_IER__TUND" title="Ethernet Transmit Buffer Underrun">TUND</a>
</td>
<td colspan="1">
<a href="#EMAC_IER__TXUBR" title="Transmit Used Bit Read">TXUBR</a>
</td>
<td colspan="1">
<a href="#EMAC_IER__RXUBR" title="Receive Used Bit Read">RXUBR</a>
</td>
<td colspan="1">
<a href="#EMAC_IER__RCOMP" title="Receive Complete">RCOMP</a>
</td>
<td colspan="1">
<a href="#EMAC_IER__MFD" title="Management Frame sent">MFD</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_IER__MFD"><strong>MFD</strong>: Management Frame sent</li>
<p>-</p>
<li id="EMAC_IER__RCOMP"><strong>RCOMP</strong>: Receive Complete</li>
<p>-</p>
<li id="EMAC_IER__RXUBR"><strong>RXUBR</strong>: Receive Used Bit Read</li>
<p>-</p>
<li id="EMAC_IER__TXUBR"><strong>TXUBR</strong>: Transmit Used Bit Read</li>
<p>-</p>
<li id="EMAC_IER__TUND"><strong>TUND</strong>: Ethernet Transmit Buffer Underrun</li>
<p>-</p>
<li id="EMAC_IER__RLE"><strong>RLE</strong>: Retry Limit Exceeded</li>
<p>-</p>
<li id="EMAC_IER__TXERR">
<strong>TXERR</strong>
</li>
<p>-</p>
<li id="EMAC_IER__TCOMP"><strong>TCOMP</strong>: Transmit Complete</li>
<p>-</p>
<li id="EMAC_IER__ROVR"><strong>ROVR</strong>: Receive Overrun</li>
<p>-</p>
<li id="EMAC_IER__HRESP"><strong>HRESP</strong>: Hresp not OK</li>
<p>-</p>
<li id="EMAC_IER__PFR"><strong>PFR</strong>: Pause Frame Received</li>
<p>-</p>
<li id="EMAC_IER__PTZ"><strong>PTZ</strong>: Pause Time Zero</li>
<p>-</p>
</ul>
<h4 id="EMAC_IDR">EMAC Interrupt Disable Register</h4>
<p><strong>Name</strong>: EMAC_IDR</p>
<p><strong>Access</strong>: write-only</p>
<p><strong>Address</strong>: 0x400B002C</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#EMAC_IDR__PTZ" title="Pause Time Zero">PTZ</a>
</td>
<td colspan="1">
<a href="#EMAC_IDR__PFR" title="Pause Frame Received">PFR</a>
</td>
<td colspan="1">
<a href="#EMAC_IDR__HRESP" title="Hresp not OK">HRESP</a>
</td>
<td colspan="1">
<a href="#EMAC_IDR__ROVR" title="Receive Overrun">ROVR</a>
</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="1">
<a href="#EMAC_IDR__TCOMP" title="Transmit Complete">TCOMP</a>
</td>
<td colspan="1">
<a href="#EMAC_IDR__TXERR" title="">TXERR</a>
</td>
<td colspan="1">
<a href="#EMAC_IDR__RLE" title="Retry Limit Exceeded">RLE</a>
</td>
<td colspan="1">
<a href="#EMAC_IDR__TUND" title="Ethernet Transmit Buffer Underrun">TUND</a>
</td>
<td colspan="1">
<a href="#EMAC_IDR__TXUBR" title="Transmit Used Bit Read">TXUBR</a>
</td>
<td colspan="1">
<a href="#EMAC_IDR__RXUBR" title="Receive Used Bit Read">RXUBR</a>
</td>
<td colspan="1">
<a href="#EMAC_IDR__RCOMP" title="Receive Complete">RCOMP</a>
</td>
<td colspan="1">
<a href="#EMAC_IDR__MFD" title="Management Frame sent">MFD</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_IDR__MFD"><strong>MFD</strong>: Management Frame sent</li>
<p>-</p>
<li id="EMAC_IDR__RCOMP"><strong>RCOMP</strong>: Receive Complete</li>
<p>-</p>
<li id="EMAC_IDR__RXUBR"><strong>RXUBR</strong>: Receive Used Bit Read</li>
<p>-</p>
<li id="EMAC_IDR__TXUBR"><strong>TXUBR</strong>: Transmit Used Bit Read</li>
<p>-</p>
<li id="EMAC_IDR__TUND"><strong>TUND</strong>: Ethernet Transmit Buffer Underrun</li>
<p>-</p>
<li id="EMAC_IDR__RLE"><strong>RLE</strong>: Retry Limit Exceeded</li>
<p>-</p>
<li id="EMAC_IDR__TXERR">
<strong>TXERR</strong>
</li>
<p>-</p>
<li id="EMAC_IDR__TCOMP"><strong>TCOMP</strong>: Transmit Complete</li>
<p>-</p>
<li id="EMAC_IDR__ROVR"><strong>ROVR</strong>: Receive Overrun</li>
<p>-</p>
<li id="EMAC_IDR__HRESP"><strong>HRESP</strong>: Hresp not OK</li>
<p>-</p>
<li id="EMAC_IDR__PFR"><strong>PFR</strong>: Pause Frame Received</li>
<p>-</p>
<li id="EMAC_IDR__PTZ"><strong>PTZ</strong>: Pause Time Zero</li>
<p>-</p>
</ul>
<h4 id="EMAC_IMR">EMAC Interrupt Mask Register</h4>
<p><strong>Name</strong>: EMAC_IMR</p>
<p><strong>Access</strong>: read-only</p>
<p><strong>Address</strong>: 0x400B0030</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#EMAC_IMR__PTZ" title="Pause Time Zero">PTZ</a>
</td>
<td colspan="1">
<a href="#EMAC_IMR__PFR" title="Pause Frame Received">PFR</a>
</td>
<td colspan="1">
<a href="#EMAC_IMR__HRESP" title="Hresp not OK">HRESP</a>
</td>
<td colspan="1">
<a href="#EMAC_IMR__ROVR" title="Receive Overrun">ROVR</a>
</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="1">
<a href="#EMAC_IMR__TCOMP" title="Transmit Complete">TCOMP</a>
</td>
<td colspan="1">
<a href="#EMAC_IMR__TXERR" title="">TXERR</a>
</td>
<td colspan="1">
<a href="#EMAC_IMR__RLE" title="Retry Limit Exceeded">RLE</a>
</td>
<td colspan="1">
<a href="#EMAC_IMR__TUND" title="Ethernet Transmit Buffer Underrun">TUND</a>
</td>
<td colspan="1">
<a href="#EMAC_IMR__TXUBR" title="Transmit Used Bit Read">TXUBR</a>
</td>
<td colspan="1">
<a href="#EMAC_IMR__RXUBR" title="Receive Used Bit Read">RXUBR</a>
</td>
<td colspan="1">
<a href="#EMAC_IMR__RCOMP" title="Receive Complete">RCOMP</a>
</td>
<td colspan="1">
<a href="#EMAC_IMR__MFD" title="Management Frame sent">MFD</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_IMR__MFD"><strong>MFD</strong>: Management Frame sent</li>
<p>-</p>
<li id="EMAC_IMR__RCOMP"><strong>RCOMP</strong>: Receive Complete</li>
<p>-</p>
<li id="EMAC_IMR__RXUBR"><strong>RXUBR</strong>: Receive Used Bit Read</li>
<p>-</p>
<li id="EMAC_IMR__TXUBR"><strong>TXUBR</strong>: Transmit Used Bit Read</li>
<p>-</p>
<li id="EMAC_IMR__TUND"><strong>TUND</strong>: Ethernet Transmit Buffer Underrun</li>
<p>-</p>
<li id="EMAC_IMR__RLE"><strong>RLE</strong>: Retry Limit Exceeded</li>
<p>-</p>
<li id="EMAC_IMR__TXERR">
<strong>TXERR</strong>
</li>
<p>-</p>
<li id="EMAC_IMR__TCOMP"><strong>TCOMP</strong>: Transmit Complete</li>
<p>-</p>
<li id="EMAC_IMR__ROVR"><strong>ROVR</strong>: Receive Overrun</li>
<p>-</p>
<li id="EMAC_IMR__HRESP"><strong>HRESP</strong>: Hresp not OK</li>
<p>-</p>
<li id="EMAC_IMR__PFR"><strong>PFR</strong>: Pause Frame Received</li>
<p>-</p>
<li id="EMAC_IMR__PTZ"><strong>PTZ</strong>: Pause Time Zero</li>
<p>-</p>
</ul>
<h4 id="EMAC_MAN">EMAC Phy Maintenance Register</h4>
<p><strong>Name</strong>: EMAC_MAN</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0034</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td colspan="2">
<a href="#EMAC_MAN__SOF" title="Start of frame">SOF</a>
</td>
<td colspan="2">
<a href="#EMAC_MAN__RW" title="Read-write">RW</a>
</td>
<td colspan="4">
<a href="#EMAC_MAN__PHYA" title="PHY Address">PHYA</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td colspan="1">
<a href="#EMAC_MAN__PHYA" title="PHY Address">PHYA</a>
</td>
<td colspan="5">
<a href="#EMAC_MAN__REGA" title="Register Address">REGA</a>
</td>
<td colspan="2">
<a href="#EMAC_MAN__CODE" title="">CODE</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_MAN__DATA" title="">DATA</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_MAN__DATA" title="">DATA</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_MAN__DATA">
<strong>DATA</strong>
</li>
<p>-</p>
<li id="EMAC_MAN__CODE">
<strong>CODE</strong>
</li>
<p>-</p>
<li id="EMAC_MAN__REGA"><strong>REGA</strong>: Register Address</li>
<p>-</p>
<li id="EMAC_MAN__PHYA"><strong>PHYA</strong>: PHY Address</li>
<p>-</p>
<li id="EMAC_MAN__RW"><strong>RW</strong>: Read-write</li>
<p>-</p>
<li id="EMAC_MAN__SOF"><strong>SOF</strong>: Start of frame</li>
<p>-</p>
</ul>
<h4 id="EMAC_PTR">EMAC Pause Time Register</h4>
<p><strong>Name</strong>: EMAC_PTR</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0038</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_PTR__PTIME" title="Pause Time">PTIME</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_PTR__PTIME" title="Pause Time">PTIME</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_PTR__PTIME"><strong>PTIME</strong>: Pause Time</li>
<p>-</p>
</ul>
<h4 id="EMAC_PFR">EMAC Pause Frames Received Register</h4>
<p><strong>Name</strong>: EMAC_PFR</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B003C</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_PFR__FROK" title="Pause Frames received OK">FROK</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_PFR__FROK" title="Pause Frames received OK">FROK</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_PFR__FROK"><strong>FROK</strong>: Pause Frames received OK<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x74CBB1</td><td class="name">-</td><td class="description">0</td></tr><tr class="even"><td class="value">0x1608940C365</td><td class="name">-</td><td class="description">8</td></tr><tr class="odd"><td class="value">0x151ED2399749</td><td class="name">-</td><td class="description">16</td></tr><tr class="even"><td class="value">0x1C7847EB8CF1</td><td class="name">-</td><td class="description">24</td></tr></tbody></table></li>
</ul>
<h4 id="EMAC_FTO">EMAC Frames Transmitted Ok Register</h4>
<p><strong>Name</strong>: EMAC_FTO</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0040</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_FTO__FTOK" title="Frames Transmitted OK">FTOK</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_FTO__FTOK" title="Frames Transmitted OK">FTOK</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_FTO__FTOK" title="Frames Transmitted OK">FTOK</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_FTO__FTOK"><strong>FTOK</strong>: Frames Transmitted OK<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x74CBB1</td><td class="name">-</td><td class="description">0</td></tr><tr class="even"><td class="value">0x1608940C365</td><td class="name">-</td><td class="description">8</td></tr><tr class="odd"><td class="value">0x151ED2399749</td><td class="name">-</td><td class="description">16</td></tr><tr class="even"><td class="value">0x1C7847EB8CF1</td><td class="name">-</td><td class="description">24</td></tr></tbody></table></li>
</ul>
<h4 id="EMAC_SCF">EMAC Single Collision Frames Register</h4>
<p><strong>Name</strong>: EMAC_SCF</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0044</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SCF__SCF" title="Single Collision Frames">SCF</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SCF__SCF" title="Single Collision Frames">SCF</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_SCF__SCF"><strong>SCF</strong>: Single Collision Frames<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x74CBB1</td><td class="name">-</td><td class="description">0</td></tr><tr class="even"><td class="value">0x1608940C365</td><td class="name">-</td><td class="description">8</td></tr><tr class="odd"><td class="value">0x151ED2399749</td><td class="name">-</td><td class="description">16</td></tr><tr class="even"><td class="value">0x1C7847EB8CF1</td><td class="name">-</td><td class="description">24</td></tr></tbody></table></li>
</ul>
<h4 id="EMAC_MCF">EMAC Multiple Collision Frames Register</h4>
<p><strong>Name</strong>: EMAC_MCF</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0048</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_MCF__MCF" title="Multicollision Frames">MCF</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_MCF__MCF" title="Multicollision Frames">MCF</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_MCF__MCF"><strong>MCF</strong>: Multicollision Frames<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x74CBB1</td><td class="name">-</td><td class="description">0</td></tr><tr class="even"><td class="value">0x1608940C365</td><td class="name">-</td><td class="description">8</td></tr><tr class="odd"><td class="value">0x151ED2399749</td><td class="name">-</td><td class="description">16</td></tr><tr class="even"><td class="value">0x1C7847EB8CF1</td><td class="name">-</td><td class="description">24</td></tr></tbody></table></li>
</ul>
<h4 id="EMAC_FRO">EMAC Frames Received Ok Register</h4>
<p><strong>Name</strong>: EMAC_FRO</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B004C</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_FRO__FROK" title="Frames Received OK">FROK</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_FRO__FROK" title="Frames Received OK">FROK</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_FRO__FROK" title="Frames Received OK">FROK</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_FRO__FROK"><strong>FROK</strong>: Frames Received OK<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x74CBB1</td><td class="name">-</td><td class="description">0</td></tr><tr class="even"><td class="value">0x1608940C365</td><td class="name">-</td><td class="description">8</td></tr><tr class="odd"><td class="value">0x151ED2399749</td><td class="name">-</td><td class="description">16</td></tr><tr class="even"><td class="value">0x1C7847EB8CF1</td><td class="name">-</td><td class="description">24</td></tr></tbody></table></li>
</ul>
<h4 id="EMAC_FCSE">EMAC Frame Check Sequence Errors Register</h4>
<p><strong>Name</strong>: EMAC_FCSE</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0050</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_FCSE__FCSE" title="Frame Check Sequence Errors">FCSE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_FCSE__FCSE"><strong>FCSE</strong>: Frame Check Sequence Errors<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x74CBB1</td><td class="name">-</td><td class="description">0</td></tr><tr class="even"><td class="value">0x1608940C365</td><td class="name">-</td><td class="description">8</td></tr><tr class="odd"><td class="value">0x151ED2399749</td><td class="name">-</td><td class="description">16</td></tr><tr class="even"><td class="value">0x1C7847EB8CF1</td><td class="name">-</td><td class="description">24</td></tr></tbody></table></li>
</ul>
<h4 id="EMAC_ALE">EMAC Alignment Errors Register</h4>
<p><strong>Name</strong>: EMAC_ALE</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0054</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_ALE__ALE" title="Alignment Errors">ALE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_ALE__ALE"><strong>ALE</strong>: Alignment Errors<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x74CBB1</td><td class="name">-</td><td class="description">0</td></tr><tr class="even"><td class="value">0x1608940C365</td><td class="name">-</td><td class="description">8</td></tr><tr class="odd"><td class="value">0x151ED2399749</td><td class="name">-</td><td class="description">16</td></tr><tr class="even"><td class="value">0x1C7847EB8CF1</td><td class="name">-</td><td class="description">24</td></tr></tbody></table></li>
</ul>
<h4 id="EMAC_DTF">EMAC Deferred Transmission Frames Register</h4>
<p><strong>Name</strong>: EMAC_DTF</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0058</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_DTF__DTF" title="Deferred Transmission Frames">DTF</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_DTF__DTF" title="Deferred Transmission Frames">DTF</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_DTF__DTF"><strong>DTF</strong>: Deferred Transmission Frames<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x74CBB1</td><td class="name">-</td><td class="description">0</td></tr><tr class="even"><td class="value">0x1608940C365</td><td class="name">-</td><td class="description">8</td></tr><tr class="odd"><td class="value">0x151ED2399749</td><td class="name">-</td><td class="description">16</td></tr><tr class="even"><td class="value">0x1C7847EB8CF1</td><td class="name">-</td><td class="description">24</td></tr></tbody></table></li>
</ul>
<h4 id="EMAC_LCOL">EMAC Late Collisions Register</h4>
<p><strong>Name</strong>: EMAC_LCOL</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B005C</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_LCOL__LCOL" title="Late Collisions">LCOL</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_LCOL__LCOL"><strong>LCOL</strong>: Late Collisions<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x74CBB1</td><td class="name">-</td><td class="description">0</td></tr><tr class="even"><td class="value">0x1608940C365</td><td class="name">-</td><td class="description">8</td></tr><tr class="odd"><td class="value">0x151ED2399749</td><td class="name">-</td><td class="description">16</td></tr><tr class="even"><td class="value">0x1C7847EB8CF1</td><td class="name">-</td><td class="description">24</td></tr></tbody></table></li>
</ul>
<h4 id="EMAC_ECOL">EMAC Excessive Collisions Register</h4>
<p><strong>Name</strong>: EMAC_ECOL</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0060</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_ECOL__EXCOL" title="Excessive Collisions">EXCOL</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_ECOL__EXCOL"><strong>EXCOL</strong>: Excessive Collisions<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x74CBB1</td><td class="name">-</td><td class="description">0</td></tr><tr class="even"><td class="value">0x1608940C365</td><td class="name">-</td><td class="description">8</td></tr><tr class="odd"><td class="value">0x151ED2399749</td><td class="name">-</td><td class="description">16</td></tr><tr class="even"><td class="value">0x1C7847EB8CF1</td><td class="name">-</td><td class="description">24</td></tr></tbody></table></li>
</ul>
<h4 id="EMAC_TUND">EMAC Transmit Underrun Errors Register</h4>
<p><strong>Name</strong>: EMAC_TUND</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0064</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_TUND__TUND" title="Transmit Underruns">TUND</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_TUND__TUND"><strong>TUND</strong>: Transmit Underruns<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x74CBB1</td><td class="name">-</td><td class="description">0</td></tr><tr class="even"><td class="value">0x1608940C365</td><td class="name">-</td><td class="description">8</td></tr><tr class="odd"><td class="value">0x151ED2399749</td><td class="name">-</td><td class="description">16</td></tr><tr class="even"><td class="value">0x1C7847EB8CF1</td><td class="name">-</td><td class="description">24</td></tr></tbody></table></li>
</ul>
<h4 id="EMAC_CSE">EMAC Carrier Sense Errors Register</h4>
<p><strong>Name</strong>: EMAC_CSE</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0068</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_CSE__CSE" title="Carrier Sense Errors">CSE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_CSE__CSE"><strong>CSE</strong>: Carrier Sense Errors<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x74CBB1</td><td class="name">-</td><td class="description">0</td></tr><tr class="even"><td class="value">0x1608940C365</td><td class="name">-</td><td class="description">8</td></tr><tr class="odd"><td class="value">0x151ED2399749</td><td class="name">-</td><td class="description">16</td></tr><tr class="even"><td class="value">0x1C7847EB8CF1</td><td class="name">-</td><td class="description">24</td></tr></tbody></table></li>
</ul>
<h4 id="EMAC_RRE">EMAC Receive Resource Errors Register</h4>
<p><strong>Name</strong>: EMAC_RRE</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B006C</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_RRE__RRE" title="Receive Resource Errors">RRE</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_RRE__RRE" title="Receive Resource Errors">RRE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_RRE__RRE"><strong>RRE</strong>: Receive Resource Errors<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x74CBB1</td><td class="name">-</td><td class="description">0</td></tr><tr class="even"><td class="value">0x1608940C365</td><td class="name">-</td><td class="description">8</td></tr><tr class="odd"><td class="value">0x151ED2399749</td><td class="name">-</td><td class="description">16</td></tr><tr class="even"><td class="value">0x1C7847EB8CF1</td><td class="name">-</td><td class="description">24</td></tr></tbody></table></li>
</ul>
<h4 id="EMAC_ROV">EMAC Receive Overrun Errors Register</h4>
<p><strong>Name</strong>: EMAC_ROV</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0070</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_ROV__ROVR" title="Receive Overrun">ROVR</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_ROV__ROVR"><strong>ROVR</strong>: Receive Overrun<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x74CBB1</td><td class="name">-</td><td class="description">0</td></tr><tr class="even"><td class="value">0x1608940C365</td><td class="name">-</td><td class="description">8</td></tr><tr class="odd"><td class="value">0x151ED2399749</td><td class="name">-</td><td class="description">16</td></tr><tr class="even"><td class="value">0x1C7847EB8CF1</td><td class="name">-</td><td class="description">24</td></tr></tbody></table></li>
</ul>
<h4 id="EMAC_RSE">EMAC Receive Symbol Errors Register</h4>
<p><strong>Name</strong>: EMAC_RSE</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0074</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_RSE__RSE" title="Receive Symbol Errors">RSE</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_RSE__RSE"><strong>RSE</strong>: Receive Symbol Errors<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x74CBB1</td><td class="name">-</td><td class="description">0</td></tr><tr class="even"><td class="value">0x1608940C365</td><td class="name">-</td><td class="description">8</td></tr><tr class="odd"><td class="value">0x151ED2399749</td><td class="name">-</td><td class="description">16</td></tr><tr class="even"><td class="value">0x1C7847EB8CF1</td><td class="name">-</td><td class="description">24</td></tr></tbody></table></li>
</ul>
<h4 id="EMAC_ELE">EMAC Excessive Length Errors Register</h4>
<p><strong>Name</strong>: EMAC_ELE</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0078</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_ELE__EXL" title="Excessive Length Errors">EXL</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_ELE__EXL"><strong>EXL</strong>: Excessive Length Errors<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x74CBB1</td><td class="name">-</td><td class="description">0</td></tr><tr class="even"><td class="value">0x1608940C365</td><td class="name">-</td><td class="description">8</td></tr><tr class="odd"><td class="value">0x151ED2399749</td><td class="name">-</td><td class="description">16</td></tr><tr class="even"><td class="value">0x1C7847EB8CF1</td><td class="name">-</td><td class="description">24</td></tr></tbody></table></li>
</ul>
<h4 id="EMAC_RJA">EMAC Receive Jabbers Register</h4>
<p><strong>Name</strong>: EMAC_RJA</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B007C</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_RJA__RJB" title="Receive Jabbers">RJB</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_RJA__RJB"><strong>RJB</strong>: Receive Jabbers<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x74CBB1</td><td class="name">-</td><td class="description">0</td></tr><tr class="even"><td class="value">0x1608940C365</td><td class="name">-</td><td class="description">8</td></tr><tr class="odd"><td class="value">0x151ED2399749</td><td class="name">-</td><td class="description">16</td></tr><tr class="even"><td class="value">0x1C7847EB8CF1</td><td class="name">-</td><td class="description">24</td></tr></tbody></table></li>
</ul>
<h4 id="EMAC_USF">EMAC Undersize Frames Register</h4>
<p><strong>Name</strong>: EMAC_USF</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0080</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_USF__USF" title="Undersize frames">USF</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_USF__USF"><strong>USF</strong>: Undersize frames<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x74CBB1</td><td class="name">-</td><td class="description">0</td></tr><tr class="even"><td class="value">0x1608940C365</td><td class="name">-</td><td class="description">8</td></tr><tr class="odd"><td class="value">0x151ED2399749</td><td class="name">-</td><td class="description">16</td></tr><tr class="even"><td class="value">0x1C7847EB8CF1</td><td class="name">-</td><td class="description">24</td></tr></tbody></table></li>
</ul>
<h4 id="EMAC_STE">EMAC SQE Test Errors Register</h4>
<p><strong>Name</strong>: EMAC_STE</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0084</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_STE__SQER" title="SQE test errors">SQER</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_STE__SQER"><strong>SQER</strong>: SQE test errors<table class="values"><thead><tr><th>Value</th><th>Name</th><th>Description</th></tr></thead><tbody><tr class="odd"><td class="value">0x74CBB1</td><td class="name">-</td><td class="description">0</td></tr><tr class="even"><td class="value">0x1608940C365</td><td class="name">-</td><td class="description">8</td></tr><tr class="odd"><td class="value">0x151ED2399749</td><td class="name">-</td><td class="description">16</td></tr><tr class="even"><td class="value">0x1C7847EB8CF1</td><td class="name">-</td><td class="description">24</td></tr></tbody></table></li>
</ul>
<h4 id="EMAC_RLE">EMAC Received Length Field Mismatch Register</h4>
<p><strong>Name</strong>: EMAC_RLE</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0088</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_RLE__RLFM" title="Receive Length Field Mismatch">RLFM</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_RLE__RLFM"><strong>RLFM</strong>: Receive Length Field Mismatch</li>
<p>-</p>
</ul>
<h4 id="EMAC_HRB">EMAC Hash Register Bottom [31:0] Register</h4>
<p><strong>Name</strong>: EMAC_HRB</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0090</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_HRB__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_HRB__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_HRB__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_HRB__ADDR" title="">ADDR</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_HRB__ADDR">
<strong>ADDR</strong>
</li>
<p>-</p>
</ul>
<h4 id="EMAC_HRT">EMAC Hash Register Top [63:32] Register</h4>
<p><strong>Name</strong>: EMAC_HRT</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0094</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_HRT__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_HRT__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_HRT__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_HRT__ADDR" title="">ADDR</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_HRT__ADDR">
<strong>ADDR</strong>
</li>
<p>-</p>
</ul>
<h4 id="EMAC_SA1B">EMAC Specific Address 1 Bottom Register</h4>
<p><strong>Name</strong>: EMAC_SA1B</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B0098</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA1B__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA1B__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA1B__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA1B__ADDR" title="">ADDR</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_SA1B__ADDR">
<strong>ADDR</strong>
</li>
<p>-</p>
</ul>
<h4 id="EMAC_SA1T">EMAC Specific Address 1 Top Register</h4>
<p><strong>Name</strong>: EMAC_SA1T</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B009C</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA1T__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA1T__ADDR" title="">ADDR</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_SA1T__ADDR">
<strong>ADDR</strong>
</li>
<p>-</p>
</ul>
<h4 id="EMAC_SA2B">EMAC Specific Address 2 Bottom Register</h4>
<p><strong>Name</strong>: EMAC_SA2B</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B00A0</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA2B__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA2B__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA2B__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA2B__ADDR" title="">ADDR</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_SA2B__ADDR">
<strong>ADDR</strong>
</li>
<p>-</p>
</ul>
<h4 id="EMAC_SA2T">EMAC Specific Address 2 Top Register</h4>
<p><strong>Name</strong>: EMAC_SA2T</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B00A4</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA2T__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA2T__ADDR" title="">ADDR</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_SA2T__ADDR">
<strong>ADDR</strong>
</li>
<p>-</p>
</ul>
<h4 id="EMAC_SA3B">EMAC Specific Address 3 Bottom Register</h4>
<p><strong>Name</strong>: EMAC_SA3B</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B00A8</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA3B__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA3B__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA3B__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA3B__ADDR" title="">ADDR</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_SA3B__ADDR">
<strong>ADDR</strong>
</li>
<p>-</p>
</ul>
<h4 id="EMAC_SA3T">EMAC Specific Address 3 Top Register</h4>
<p><strong>Name</strong>: EMAC_SA3T</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B00AC</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA3T__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA3T__ADDR" title="">ADDR</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_SA3T__ADDR">
<strong>ADDR</strong>
</li>
<p>-</p>
</ul>
<h4 id="EMAC_SA4B">EMAC Specific Address 4 Bottom Register</h4>
<p><strong>Name</strong>: EMAC_SA4B</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B00B0</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA4B__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA4B__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA4B__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA4B__ADDR" title="">ADDR</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_SA4B__ADDR">
<strong>ADDR</strong>
</li>
<p>-</p>
</ul>
<h4 id="EMAC_SA4T">EMAC Specific Address 4 Top Register</h4>
<p><strong>Name</strong>: EMAC_SA4T</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B00B4</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA4T__ADDR" title="">ADDR</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_SA4T__ADDR" title="">ADDR</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_SA4T__ADDR">
<strong>ADDR</strong>
</li>
<p>-</p>
</ul>
<h4 id="EMAC_TID">EMAC Type ID Checking Register</h4>
<p><strong>Name</strong>: EMAC_TID</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B00B8</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_TID__TID" title="Type ID checking">TID</a>
</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td colspan="8">
<a href="#EMAC_TID__TID" title="Type ID checking">TID</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_TID__TID"><strong>TID</strong>: Type ID checking</li>
<p>-</p>
</ul>
<h4 id="EMAC_USRIO">EMAC User Input/Output Register</h4>
<p><strong>Name</strong>: EMAC_USRIO</p>
<p><strong>Access</strong>: read-write</p>
<p><strong>Address</strong>: 0x400B00C0</p>
<table class="fields">
<tbody>
<tr class="offsets">
<td>31</td>
<td>30</td>
<td>29</td>
<td>28</td>
<td>27</td>
<td>26</td>
<td>25</td>
<td>24</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>23</td>
<td>22</td>
<td>21</td>
<td>20</td>
<td>19</td>
<td>18</td>
<td>17</td>
<td>16</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>15</td>
<td>14</td>
<td>13</td>
<td>12</td>
<td>11</td>
<td>10</td>
<td>9</td>
<td>8</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
<tr class="offsets">
<td>7</td>
<td>6</td>
<td>5</td>
<td>4</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>0</td>
</tr>
<tr class="fields">
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td colspan="1">
<a href="#EMAC_USRIO__CLKEN" title="Clock Enable">CLKEN</a>
</td>
<td colspan="1">
<a href="#EMAC_USRIO__RMII" title="Reduce MII">RMII</a>
</td>
</tr>
</tbody>
</table>
<ul class="values">
<li id="EMAC_USRIO__RMII"><strong>RMII</strong>: Reduce MII</li>
<p>-</p>
<li id="EMAC_USRIO__CLKEN"><strong>CLKEN</strong>: Clock Enable</li>
<p>-</p>
</ul>
</div>
</div>
</body>
</html>
|
third_party/blink/web_tests/external/wpt/uievents/legacy-domevents-tests/submissions/Microsoft/Event.eventPhase.html | chromium/chromium | <!DOCTYPE HTML>
<html>
<head>
<title> W3C DOM Level 2 Event Object Property: eventPhase </title>
<script type="text/javascript">
var PassTest = function()
{
document.getElementById("testresult").firstChild.data = "PASS";
}
var FailTest = function()
{
document.getElementById("testresult").firstChild.data = "FAIL";
}
var EVENT = "dblclick";
var TARGET, PARENT;
var ActualResult = [];
var ExpectResult = [];
window.onload = function()
{
try
{
TARGET = document.getElementById("target");
PARENT = document.getElementById("parent");
ExpectResult = ["[1]" + PARENT, "[2]" + TARGET, "[3]" + document.body];
PARENT.addEventListener(EVENT, TestEvent, true);
PARENT.addEventListener(EVENT, TestEvent, false);
TARGET.addEventListener(EVENT, TestEvent, true);
TARGET.addEventListener(EVENT, TestEvent, false);
document.body.addEventListener(EVENT, TestEvent, false);
PARENT.removeEventListener(EVENT, TestEvent, false);
TARGET.removeEventListener(EVENT, TestEvent, true);
}
catch(ex)
{
FailTest();
}
}
function TestEvent(evt)
{
ActualResult.push("[" + evt.eventPhase + "]" + evt.currentTarget);
if ((evt.eventPhase == 3) && (evt.currentTarget == document.body))
{
if (ExpectResult.toString() == ActualResult.toString())
{
PassTest();
}
else
{
FailTest();
}
}
}
</script>
</head>
<body>
<h4>
Test Description:
eventPhase is used to indicate which phase of event flow is currently being accomplished.
</h4>
<div id="parent">
Double click here: <input id="target" />
</div>
<p>Test passes if the word "PASS" appears below after double clicking the above textbox.</p>
<div>Test result: </div>
<div id='testresult'>FAIL</div>
</body>
</html> |
third_party/blink/web_tests/external/wpt/html/semantics/tabular-data/the-table-element/table-rows.html | scheib/chromium | <!DOCTYPE html>
<title>HTMLTableElement.rows</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
function assert_nodelist_equals(actual, expected) {
assert_equals(actual.length, expected.length);
for (var i = 0; i < actual.length; ++i) {
assert_true(i in actual);
assert_true(actual.hasOwnProperty(i),
"property " + i + " expected to be present on the object");
assert_equals(actual.item(i), expected[i]);
assert_equals(actual[i], expected[i]);
}
}
function test_table_simple(group, table) {
var foo1 = group.appendChild(document.createElement("tr"));
foo1.id = "foo";
var bar1 = group.appendChild(document.createElement("tr"));
bar1.id = "bar";
var foo2 = group.appendChild(document.createElement("tr"));
foo2.id = "foo";
var bar2 = group.appendChild(document.createElement("tr"));
bar2.id = "bar";
assert_true(table.rows instanceof HTMLCollection, "table.rows should be a HTMLCollection.");
assert_nodelist_equals(table.rows, [foo1, bar1, foo2, bar2]);
assert_equals(table.rows.foo, foo1);
assert_equals(table.rows["foo"], foo1);
assert_equals(table.rows.namedItem("foo"), foo1);
assert_equals(table.rows.bar, bar1);
assert_equals(table.rows["bar"], bar1);
assert_equals(table.rows.namedItem("bar"), bar1);
assert_array_equals(Object.getOwnPropertyNames(table.rows), [
"0",
"1",
"2",
"3",
"foo",
"bar"
]);
}
test(function() {
var table = document.createElement("table");
test_table_simple(table, table);
}, "Children of table");
test(function() {
var table = document.createElement("table");
var group = table.appendChild(document.createElement("thead"));
test_table_simple(group, table);
}, "Children of thead");
test(function() {
var table = document.createElement("table");
var group = table.appendChild(document.createElement("tbody"));
test_table_simple(group, table);
}, "Children of tbody");
test(function() {
var table = document.createElement("table");
var group = table.appendChild(document.createElement("tfoot"));
test_table_simple(group, table);
}, "Children of tfoot");
test(function() {
var table = document.createElement("table");
var orphan1 = table.appendChild(document.createElement("tr"));
orphan1.id = "orphan1";
var foot1 = table.appendChild(document.createElement("tfoot"));
var orphan2 = table.appendChild(document.createElement("tr"));
orphan2.id = "orphan2";
var foot2 = table.appendChild(document.createElement("tfoot"));
var orphan3 = table.appendChild(document.createElement("tr"));
orphan3.id = "orphan3";
var body1 = table.appendChild(document.createElement("tbody"));
var orphan4 = table.appendChild(document.createElement("tr"));
orphan4.id = "orphan4";
var body2 = table.appendChild(document.createElement("tbody"));
var orphan5 = table.appendChild(document.createElement("tr"));
orphan5.id = "orphan5";
var head1 = table.appendChild(document.createElement("thead"));
var orphan6 = table.appendChild(document.createElement("tr"));
orphan6.id = "orphan6";
var head2 = table.appendChild(document.createElement("thead"));
var orphan7 = table.appendChild(document.createElement("tr"));
orphan7.id = "orphan7";
var foot1row1 = foot1.appendChild(document.createElement("tr"));
foot1row1.id = "foot1row1";
var foot1row2 = foot1.appendChild(document.createElement("tr"));
foot1row2.id = "foot1row2";
var foot2row1 = foot2.appendChild(document.createElement("tr"));
foot2row1.id = "foot2row1";
var foot2row2 = foot2.appendChild(document.createElement("tr"));
foot2row2.id = "foot2row2";
var body1row1 = body1.appendChild(document.createElement("tr"));
body1row1.id = "body1row1";
var body1row2 = body1.appendChild(document.createElement("tr"));
body1row2.id = "body1row2";
var body2row1 = body2.appendChild(document.createElement("tr"));
body2row1.id = "body2row1";
var body2row2 = body2.appendChild(document.createElement("tr"));
body2row2.id = "body2row2";
var head1row1 = head1.appendChild(document.createElement("tr"));
head1row1.id = "head1row1";
var head1row2 = head1.appendChild(document.createElement("tr"));
head1row2.id = "head1row2";
var head2row1 = head2.appendChild(document.createElement("tr"));
head2row1.id = "head2row1";
var head2row2 = head2.appendChild(document.createElement("tr"));
head2row2.id = "head2row2";
// These elements should not end up in any collection.
table.appendChild(document.createElement("div"))
.appendChild(document.createElement("tr"));
foot1.appendChild(document.createElement("div"))
.appendChild(document.createElement("tr"));
body1.appendChild(document.createElement("div"))
.appendChild(document.createElement("tr"));
head1.appendChild(document.createElement("div"))
.appendChild(document.createElement("tr"));
table.appendChild(document.createElementNS("http://example.com/test", "tr"));
foot1.appendChild(document.createElementNS("http://example.com/test", "tr"));
body1.appendChild(document.createElementNS("http://example.com/test", "tr"));
head1.appendChild(document.createElementNS("http://example.com/test", "tr"));
assert_true(table.rows instanceof HTMLCollection, "table.rows should be a HTMLCollection.");
assert_nodelist_equals(table.rows, [
// thead
head1row1,
head1row2,
head2row1,
head2row2,
// tbody + table
orphan1,
orphan2,
orphan3,
body1row1,
body1row2,
orphan4,
body2row1,
body2row2,
orphan5,
orphan6,
orphan7,
// tfoot
foot1row1,
foot1row2,
foot2row1,
foot2row2
]);
assert_array_equals(Object.getOwnPropertyNames(table.rows), [
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12",
"13",
"14",
"15",
"16",
"17",
"18",
"head1row1",
"head1row2",
"head2row1",
"head2row2",
"orphan1",
"orphan2",
"orphan3",
"body1row1",
"body1row2",
"orphan4",
"body2row1",
"body2row2",
"orphan5",
"orphan6",
"orphan7",
"foot1row1",
"foot1row2",
"foot2row1",
"foot2row2"
]);
var ids = [
"orphan1",
"orphan2",
"orphan3",
"orphan4",
"orphan5",
"orphan6",
"orphan7",
"foot1row1",
"foot1row2",
"foot2row1",
"foot2row2",
"body1row1",
"body1row2",
"body2row1",
"body2row2",
"head1row1",
"head1row2",
"head2row1",
"head2row2"
];
ids.forEach(function(id) {
assert_equals(table.rows.namedItem(id).id, id);
assert_true(id in table.rows);
assert_equals(table.rows[id].id, id);
assert_true(id in table.rows);
});
while (table.firstChild) {
table.removeChild(table.firstChild);
}
ids.forEach(function(id) {
assert_equals(table.rows.namedItem(id), null);
assert_false(id in table.rows);
assert_equals(table.rows[id], undefined);
assert_false(id in table.rows);
});
}, "Complicated case");
</script>
|
vendor/closure-library/closure/goog/dom/annotate_test.html | saarons/closure | <!DOCTYPE html>
<html>
<!--
Copyright 2006 The Closure Library Authors. All Rights Reserved.
Use of this source code is governed by the Apache License, Version 2.0.
See the COPYING file for details.
-->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Closure Unit Tests - goog.dom.annotate</title>
<script src="../base.js"></script>
<script>
goog.require('goog.dom');
goog.require('goog.dom.annotate');
goog.require('goog.testing.jsunit');
</script>
<style type="text/css">
.c0 {background-color:#ff0}
.c1 {background-color:#0ff}
</style>
</head>
<body>
<span id="p">Tom & Jerry</span>
<table>
<tr id="q">
<td>This <b>little</b> piggy</td>
<td class="s">That little <i>pig</i>gy</td>
</tr>
<tr id="r">
<td>This <b>little</b> piggy</td>
<td class="s">That little <i>pig</i>gy</td>
</tr>
<tr id="t">
<td>This <b>little</b> piggy</td>
<td class="s">That little <i>Pig</i>gy</td>
</tr>
<tr id="u">
<td>This <b>little</b> piggy</td>
<td class="s">That little <i>Pig</i>gy</td>
</tr>
</table>
<div id="o">
<object classid="clsid:SAMPLE-UNRECOGNIZED-ID" width="100" height="50">
<param name="BorderStyle" value="1" />
<param name="MousePointer" value="0" />
<param name="Enabled" value="1" />
<param name="Min" value="0" />
<param name="Max" value="10" />
Your browser cannot display this object.
</object>
</div>
<script id="script">var variable;</script>
<style id="style" type="text/css">.orange{color:orange}</style>
<span id="comment"><!-- note --></span>
<script>
var $ = goog.dom.getElement;
var TEXT = 'This little piggy cried "Wee! Wee! Wee!" all the way home.';
function doAnnotation(termIndex, termHtml) {
return '<span class="c' + termIndex + '">' + termHtml + '</span>';
}
// goog.dom.annotate.annotateText tests
function testAnnotateText() {
var terms = [['pig', true]];
var html = goog.dom.annotate.annotateText(TEXT, terms, doAnnotation);
assertEquals(null, html);
terms = [['pig', false]];
html = goog.dom.annotate.annotateText(TEXT, terms, doAnnotation);
assertEquals('This little <span class="c0">pig</span>gy cried ' +
'"Wee! Wee! Wee!" all the way home.', html);
terms = [[' piggy ', true]];
html = goog.dom.annotate.annotateText(TEXT, terms, doAnnotation);
assertEquals(null, html);
terms = [[' piggy ', false]];
html = goog.dom.annotate.annotateText(TEXT, terms, doAnnotation);
assertEquals('This little<span class="c0"> piggy </span>cried ' +
'"Wee! Wee! Wee!" all the way home.', html);
terms = [['goose', true], ['piggy', true]];
html = goog.dom.annotate.annotateText(TEXT, terms, doAnnotation);
assertEquals('This little <span class="c1">piggy</span> cried ' +
'"Wee! Wee! Wee!" all the way home.', html);
}
function testAnnotateTextHtmlEscaping() {
var terms = [['a', false]];
var html = goog.dom.annotate.annotateText('&a', terms, doAnnotation)
assertEquals('&<span class="c0">a</span>', html);
terms = [['a', false]];
html = goog.dom.annotate.annotateText('a&', terms, doAnnotation)
assertEquals('<span class="c0">a</span>&', html);
terms = [['&', false]];
html = goog.dom.annotate.annotateText('&', terms, doAnnotation)
assertEquals('<span class="c0">&</span>', html);
}
function testAnnotateTextIgnoreCase() {
var terms = [['wEe', true]];
var html = goog.dom.annotate.annotateText(TEXT, terms, doAnnotation, true);
assertEquals('This little piggy cried "<span class="c0">Wee</span>! ' +
'<span class="c0">Wee</span>! <span class="c0">Wee</span>!' +
'" all the way home.', html);
terms = [['WEE!', true], ['HE', false]];
html = goog.dom.annotate.annotateText(TEXT, terms, doAnnotation, true);
assertEquals('This little piggy cried "<span class="c0">Wee!</span> ' +
'<span class="c0">Wee!</span> <span class="c0">Wee!</span>' +
'" all t<span class="c1">he</span> way home.', html);
}
function testAnnotateTextOverlappingTerms() {
var terms = [['tt', false], ['little', false]];
var html = goog.dom.annotate.annotateText(TEXT, terms, doAnnotation);
assertEquals('This <span class="c1">little</span> piggy cried "Wee! ' +
'Wee! Wee!" all the way home.', html);
}
// goog.dom.annotate.annotateTerms tests
function testAnnotateTerms() {
var terms = [['pig', true]];
assertFalse(goog.dom.annotate.annotateTerms($('p'), terms, doAnnotation));
assertEquals('Tom & Jerry', $('p').innerHTML);
terms = [['Tom', true]];
assertTrue(goog.dom.annotate.annotateTerms($('p'), terms, doAnnotation));
var spans = goog.dom.getElementsByTagNameAndClass('SPAN', 'c0', $('p'));
assertEquals(1, spans.length);
assertEquals('Tom', spans[0].innerHTML);
assertEquals(' & Jerry', spans[0].nextSibling.nodeValue);
}
function testAnnotateTermsInTable() {
var terms = [['pig', false]];
assertTrue(goog.dom.annotate.annotateTerms($('q'), terms, doAnnotation));
var spans = goog.dom.getElementsByTagNameAndClass('SPAN', 'c0', $('q'));
assertEquals(2, spans.length);
assertEquals('pig', spans[0].innerHTML);
assertEquals('gy', spans[0].nextSibling.nodeValue);
assertEquals('pig', spans[1].innerHTML);
assertEquals('I', spans[1].parentNode.tagName);
}
function testAnnotateTermsWithClassExclusions() {
var terms = [['pig', false]];
var classesToIgnore = ['s'];
assertTrue(goog.dom.annotate.annotateTerms($('r'), terms, doAnnotation,
false, classesToIgnore));
var spans = goog.dom.getElementsByTagNameAndClass('SPAN', 'c0', $('r'));
assertEquals(1, spans.length);
assertEquals('pig', spans[0].innerHTML);
assertEquals('gy', spans[0].nextSibling.nodeValue);
}
function testAnnotateTermsIgnoreCase() {
var terms1 = [['pig', false]];
assertTrue(goog.dom.annotate.annotateTerms(
$('t'), terms1, doAnnotation, true));
var spans = goog.dom.getElementsByTagNameAndClass('SPAN', 'c0', $('t'));
assertEquals(2, spans.length);
assertEquals('pig', spans[0].innerHTML);
assertEquals('gy', spans[0].nextSibling.nodeValue);
assertEquals('Pig', spans[1].innerHTML);
var terms2 = [['Pig', false]];
assertTrue(goog.dom.annotate.annotateTerms(
$('u'), terms2, doAnnotation, true));
var spans = goog.dom.getElementsByTagNameAndClass('SPAN', 'c0', $('u'));
assertEquals(2, spans.length);
assertEquals('pig', spans[0].innerHTML);
assertEquals('gy', spans[0].nextSibling.nodeValue);
assertEquals('Pig', spans[1].innerHTML);
}
function testAnnotateTermsInObject() {
var terms = [['object', true]];
assertTrue(goog.dom.annotate.annotateTerms($('o'), terms, doAnnotation));
var spans = goog.dom.getElementsByTagNameAndClass('SPAN', 'c0', $('o'));
assertEquals(1, spans.length);
assertEquals('object', spans[0].innerHTML);
}
function testAnnotateTermsInScript() {
var terms = [['variable', true]];
assertFalse(goog.dom.annotate.annotateTerms($('script'), terms,
doAnnotation));
}
function testAnnotateTermsInStyle() {
var terms = [['color', true]];
assertFalse(goog.dom.annotate.annotateTerms($('style'), terms,
doAnnotation));
}
function testAnnotateTermsInHtmlComment() {
var terms = [['note', true]];
assertFalse(goog.dom.annotate.annotateTerms($('comment'), terms,
doAnnotation));
}
</script>
</body>
</html>
|
www/modules/field_ui/field_ui.css | marcom-unimelb/Unimelb-Web-Templates-Drupal | /**
* @file
* Stylesheet for the Field UI module.
*/
/* 'Manage fields' and 'Manage display' overviews */
table.field-ui-overview tr.add-new .label-input {
float: left; /* LTR */
}
table.field-ui-overview tr.add-new .tabledrag-changed {
display: none;
}
table.field-ui-overview tr.add-new .description {
margin-bottom: 0;
}
table.field-ui-overview tr.add-new .add-new-placeholder {
font-weight: bold;
padding-bottom: .5em;
}
table.field-ui-overview tr.region-title td {
font-weight: bold;
}
table.field-ui-overview tr.region-message td {
font-style: italic;
}
table.field-ui-overview tr.region-populated {
display: none;
}
table.field-ui-overview tr.region-add-new-title {
display: none;
}
/* 'Manage display' overview */
#field-display-overview .field-formatter-summary-cell {
line-height: 1em;
}
#field-display-overview .field-formatter-summary {
float: left;
font-size: 0.9em;
}
#field-display-overview td.field-formatter-summary-cell span.warning {
display: block;
float: left;
margin-right: .5em;
}
#field-display-overview .field-formatter-settings-edit-wrapper {
float: right;
}
#field-display-overview .field-formatter-settings-edit {
float: right;
}
#field-display-overview tr.field-formatter-settings-editing td {
vertical-align: top;
}
#field-display-overview tr.field-formatter-settings-editing .field-formatter-type {
display: none;
}
#field-display-overview .field-formatter-settings-edit-form .formatter-name{
font-weight: bold;
}
#field-ui-display-overview-form #edit-refresh {
display:none;
}
|
www/bundles/ckfinder/help/en/files/toc.html | timetre/Collectif | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<meta name="robots" content="noindex, nofollow" />
<style type="text/css">
body
{
margin: 0px;
font-family: Trebuchet, Trebuchet MS, Arial;
}
a { text-decoration: none ; }
a:hover { text-decoration: underline ; }
ul { list-style-type: none; padding-left: 20px; margin:0px; }
li { white-space: nowrap; padding-left:2px; padding-right:2px; }
.toc
{
background-color: #696969;
color: #f5f5f5;
margin: 0px;
font-weight: bold;
text-align: center;
}
.contents { padding: 10px; }
.active { color: highlighttext; background-color: highlight; }
</style>
<script type="text/javascript">
window.onload = function()
{
for ( var i = 0 ; i < document.links.length ; i++ )
{
var link = document.links[i] ;
link.target = 'CKDocsMain' ;
link.innerHTML = ' ' + link.innerHTML + ' ' ;
}
}
var lastLink = null ;
window.top.SetActiveTopic = function( topicUrl )
{
var pageName = topicUrl.match( /(?:^|\/|\\)([^\\\/]+)$/ )[1] ;
if ( lastLink )
lastLink.className = '' ;
for ( var i = 0 ; i < document.links.length ; i++ )
{
var link = document.links[i] ;
if ( link.href.match( /(?:^|\/|\\)([^\\\/]+)$/ )[1] == pageName )
{
lastLink = link ;
link.className = 'active' ;
return ;
}
}
}
</script>
</head>
<body>
<p class="toc">
Table of Contents</p>
<div class="contents">
<ul style="padding-left: 0px;">
<li><a href="001.html">Welcome</a></li>
<li><a href="002.html">CKFinder Interface</a>
<ul>
<li><a href="003.html">Folders Pane</a>
<ul>
<li><a href="014.html">Basket</a></li>
</ul>
</li>
<li><a href="004.html">Files Pane</a></li>
<li><a href="005.html">Toolbar</a>
<ul>
<li><a href="006.html">Upload</a></li>
<li><a href="007.html">Refresh</a></li>
<li><a href="008.html">Settings</a></li>
<li><a href="009.html">Help</a></li>
</ul>
</li>
<li><a href="010.html">Status Bar</a></li>
<li><a href="012.html">Context Menu</a></li>
</ul>
</li>
<li><a href="015.html">Keyboard Shortcuts</a></li>
<li><a href="013.html">Compatibility and System Requirements</a></li>
<li><a href="011.html">Legal Notices</a></li>
<li><a href="suggestions.html">Suggestions?</a></li>
</ul>
</div>
</body>
</html>
|
wp-content/themes/blankslate/node_modules/grunt-contrib-cssmin/node_modules/clean-css/test/data/blueprint-min.css | armevbab1911/wordpress-Workshop | html{margin:0;padding:0;border:0}
body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,code,del,dfn,em,img,q,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,dialog,figure,footer,header,hgroup,nav,section{margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline}
article,aside,dialog,figure,footer,header,hgroup,nav,section{display:block}
body{line-height:1.5;background:#fff}
table{border-collapse:separate;border-spacing:0}
caption,th,td{text-align:left;font-weight:400;float:none!important}
table,th,td{vertical-align:middle}
blockquote:before,blockquote:after,q:before,q:after{content:''}
blockquote,q{quotes:"" ""}
a img{border:0}
:focus{outline:0}
html{font-size:100.01%}
body{font-size:75%;color:#222;background:#fff;font-family:"Helvetica Neue",Arial,Helvetica,sans-serif}
h1,h2,h3,h4,h5,h6{font-weight:400;color:#111}
h1{font-size:3em;line-height:1;margin-bottom:.5em}
h2{font-size:2em;margin-bottom:.75em}
h3{font-size:1.5em;line-height:1;margin-bottom:1em}
h4{font-size:1.2em;line-height:1.25;margin-bottom:1.25em}
h5{font-size:1em;font-weight:700;margin-bottom:1.5em}
h6{font-size:1em;font-weight:700}
h1 img,h2 img,h3 img,h4 img,h5 img,h6 img{margin:0}
p{margin:0 0 1.5em}
.left{float:left!important}
p .left{margin:1.5em 1.5em 1.5em 0;padding:0}
.right{float:right!important}
p .right{margin:1.5em 0 1.5em 1.5em;padding:0}
a:focus,a:hover{color:#09f}
a{color:#06c;text-decoration:underline}
blockquote{margin:1.5em;color:#666;font-style:italic}
strong,dfn{font-weight:700}
em,dfn{font-style:italic}
sup,sub{line-height:0}
abbr,acronym{border-bottom:1px dotted #666}
address{margin:0 0 1.5em;font-style:italic}
del{color:#666}
pre{margin:1.5em 0;white-space:pre}
pre,code,tt{font:1em 'andale mono','lucida console',monospace;line-height:1.5}
li ul,li ol{margin:0}
ul,ol{margin:0 1.5em 1.5em 0;padding-left:1.5em}
ul{list-style-type:disc}
ol{list-style-type:decimal}
dl{margin:0 0 1.5em}
dl dt{font-weight:700}
dd{margin-left:1.5em}
table{margin-bottom:1.4em;width:100%}
th{font-weight:700}
thead th{background:#c3d9ff}
th,td,caption{padding:4px 10px 4px 5px}
tbody tr:nth-child(even) td,tbody tr.even td{background:#e5ecf9}
tfoot{font-style:italic}
caption{background:#eee}
.small{font-size:.8em;margin-bottom:1.875em;line-height:1.875em}
.large{font-size:1.2em;line-height:2.5em;margin-bottom:1.25em}
.hide{display:none}
.quiet{color:#666}
.loud{color:#000}
.highlight{background:#ff0}
.added{background:#060;color:#fff}
.removed{background:#900;color:#fff}
.first{margin-left:0;padding-left:0}
.last{margin-right:0;padding-right:0}
.top{margin-top:0;padding-top:0}
.bottom{margin-bottom:0;padding-bottom:0}
label{font-weight:700}
fieldset{padding:0 1.4em 1.4em;margin:0 0 1.5em;border:1px solid #ccc}
legend{font-weight:700;font-size:1.2em;margin-top:-.2em;margin-bottom:1em}
fieldset,#IE8#HACK{padding-top:1.4em}
legend,#IE8#HACK{margin-top:0;margin-bottom:0}
input[type=text],input[type=password],input.text,input.title,textarea{background-color:#fff;border:1px solid #bbb}
input[type=text]:focus,input[type=password]:focus,input.text:focus,input.title:focus,textarea:focus{border-color:#666}
select{background-color:#fff;border-width:1px;border-style:solid}
input[type=text],input[type=password],input.text,input.title,textarea,select{margin:.5em 0}
input.text,input.title{width:300px;padding:5px}
input.title{font-size:1.5em}
textarea{width:390px;height:250px;padding:5px}
form.inline{line-height:3}
form.inline p{margin-bottom:0}
.error,.alert,.notice,.success,.info{padding:.8em;margin-bottom:1em;border:2px solid #ddd}
.error,.alert{background:#fbe3e4;color:#8a1f11;border-color:#fbc2c4}
.notice{background:#fff6bf;color:#514721;border-color:#ffd324}
.success{background:#e6efc2;color:#264409;border-color:#c6d880}
.info{background:#d5edf8;color:#205791;border-color:#92cae4}
.error a,.alert a{color:#8a1f11}
.notice a{color:#514721}
.success a{color:#264409}
.info a{color:#205791}
.container{width:950px;margin:0 auto}
.showgrid{background:url(src/grid.png)}
.column,.span-1,.span-2,.span-3,.span-4,.span-5,.span-6,.span-7,.span-8,.span-9,.span-10,.span-11,.span-12,.span-13,.span-14,.span-15,.span-16,.span-17,.span-18,.span-19,.span-20,.span-21,.span-22,.span-23,.span-24{float:left;margin-right:10px}
.last{margin-right:0}
.span-1{width:30px}
.span-2{width:70px}
.span-3{width:110px}
.span-4{width:150px}
.span-5{width:190px}
.span-6{width:230px}
.span-7{width:270px}
.span-8{width:310px}
.span-9{width:350px}
.span-10{width:390px}
.span-11{width:430px}
.span-12{width:470px}
.span-13{width:510px}
.span-14{width:550px}
.span-15{width:590px}
.span-16{width:630px}
.span-17{width:670px}
.span-18{width:710px}
.span-19{width:750px}
.span-20{width:790px}
.span-21{width:830px}
.span-22{width:870px}
.span-23{width:910px}
.span-24{width:950px;margin-right:0}
input.span-1,textarea.span-1,input.span-2,textarea.span-2,input.span-3,textarea.span-3,input.span-4,textarea.span-4,input.span-5,textarea.span-5,input.span-6,textarea.span-6,input.span-7,textarea.span-7,input.span-8,textarea.span-8,input.span-9,textarea.span-9,input.span-10,textarea.span-10,input.span-11,textarea.span-11,input.span-12,textarea.span-12,input.span-13,textarea.span-13,input.span-14,textarea.span-14,input.span-15,textarea.span-15,input.span-16,textarea.span-16,input.span-17,textarea.span-17,input.span-18,textarea.span-18,input.span-19,textarea.span-19,input.span-20,textarea.span-20,input.span-21,textarea.span-21,input.span-22,textarea.span-22,input.span-23,textarea.span-23,input.span-24,textarea.span-24{border-left-width:1px;border-right-width:1px;padding-left:5px;padding-right:5px}
input.span-1,textarea.span-1{width:18px}
input.span-2,textarea.span-2{width:58px}
input.span-3,textarea.span-3{width:98px}
input.span-4,textarea.span-4{width:138px}
input.span-5,textarea.span-5{width:178px}
input.span-6,textarea.span-6{width:218px}
input.span-7,textarea.span-7{width:258px}
input.span-8,textarea.span-8{width:298px}
input.span-9,textarea.span-9{width:338px}
input.span-10,textarea.span-10{width:378px}
input.span-11,textarea.span-11{width:418px}
input.span-12,textarea.span-12{width:458px}
input.span-13,textarea.span-13{width:498px}
input.span-14,textarea.span-14{width:538px}
input.span-15,textarea.span-15{width:578px}
input.span-16,textarea.span-16{width:618px}
input.span-17,textarea.span-17{width:658px}
input.span-18,textarea.span-18{width:698px}
input.span-19,textarea.span-19{width:738px}
input.span-20,textarea.span-20{width:778px}
input.span-21,textarea.span-21{width:818px}
input.span-22,textarea.span-22{width:858px}
input.span-23,textarea.span-23{width:898px}
input.span-24,textarea.span-24{width:938px}
.append-1{padding-right:40px}
.append-2{padding-right:80px}
.append-3{padding-right:120px}
.append-4{padding-right:160px}
.append-5{padding-right:200px}
.append-6{padding-right:240px}
.append-7{padding-right:280px}
.append-8{padding-right:320px}
.append-9{padding-right:360px}
.append-10{padding-right:400px}
.append-11{padding-right:440px}
.append-12{padding-right:480px}
.append-13{padding-right:520px}
.append-14{padding-right:560px}
.append-15{padding-right:600px}
.append-16{padding-right:640px}
.append-17{padding-right:680px}
.append-18{padding-right:720px}
.append-19{padding-right:760px}
.append-20{padding-right:800px}
.append-21{padding-right:840px}
.append-22{padding-right:880px}
.append-23{padding-right:920px}
.prepend-1{padding-left:40px}
.prepend-2{padding-left:80px}
.prepend-3{padding-left:120px}
.prepend-4{padding-left:160px}
.prepend-5{padding-left:200px}
.prepend-6{padding-left:240px}
.prepend-7{padding-left:280px}
.prepend-8{padding-left:320px}
.prepend-9{padding-left:360px}
.prepend-10{padding-left:400px}
.prepend-11{padding-left:440px}
.prepend-12{padding-left:480px}
.prepend-13{padding-left:520px}
.prepend-14{padding-left:560px}
.prepend-15{padding-left:600px}
.prepend-16{padding-left:640px}
.prepend-17{padding-left:680px}
.prepend-18{padding-left:720px}
.prepend-19{padding-left:760px}
.prepend-20{padding-left:800px}
.prepend-21{padding-left:840px}
.prepend-22{padding-left:880px}
.prepend-23{padding-left:920px}
.border{padding-right:4px;margin-right:5px;border-right:1px solid #ddd}
.colborder{padding-right:24px;margin-right:25px;border-right:1px solid #ddd}
.pull-1{margin-left:-40px}
.pull-2{margin-left:-80px}
.pull-3{margin-left:-120px}
.pull-4{margin-left:-160px}
.pull-5{margin-left:-200px}
.pull-6{margin-left:-240px}
.pull-7{margin-left:-280px}
.pull-8{margin-left:-320px}
.pull-9{margin-left:-360px}
.pull-10{margin-left:-400px}
.pull-11{margin-left:-440px}
.pull-12{margin-left:-480px}
.pull-13{margin-left:-520px}
.pull-14{margin-left:-560px}
.pull-15{margin-left:-600px}
.pull-16{margin-left:-640px}
.pull-17{margin-left:-680px}
.pull-18{margin-left:-720px}
.pull-19{margin-left:-760px}
.pull-20{margin-left:-800px}
.pull-21{margin-left:-840px}
.pull-22{margin-left:-880px}
.pull-23{margin-left:-920px}
.pull-24{margin-left:-960px}
.pull-1,.pull-2,.pull-3,.pull-4,.pull-5,.pull-6,.pull-7,.pull-8,.pull-9,.pull-10,.pull-11,.pull-12,.pull-13,.pull-14,.pull-15,.pull-16,.pull-17,.pull-18,.pull-19,.pull-20,.pull-21,.pull-22,.pull-23,.pull-24{float:left;position:relative}
.push-1{margin:0 -40px 1.5em 40px}
.push-2{margin:0 -80px 1.5em 80px}
.push-3{margin:0 -120px 1.5em 120px}
.push-4{margin:0 -160px 1.5em 160px}
.push-5{margin:0 -200px 1.5em 200px}
.push-6{margin:0 -240px 1.5em 240px}
.push-7{margin:0 -280px 1.5em 280px}
.push-8{margin:0 -320px 1.5em 320px}
.push-9{margin:0 -360px 1.5em 360px}
.push-10{margin:0 -400px 1.5em 400px}
.push-11{margin:0 -440px 1.5em 440px}
.push-12{margin:0 -480px 1.5em 480px}
.push-13{margin:0 -520px 1.5em 520px}
.push-14{margin:0 -560px 1.5em 560px}
.push-15{margin:0 -600px 1.5em 600px}
.push-16{margin:0 -640px 1.5em 640px}
.push-17{margin:0 -680px 1.5em 680px}
.push-18{margin:0 -720px 1.5em 720px}
.push-19{margin:0 -760px 1.5em 760px}
.push-20{margin:0 -800px 1.5em 800px}
.push-21{margin:0 -840px 1.5em 840px}
.push-22{margin:0 -880px 1.5em 880px}
.push-23{margin:0 -920px 1.5em 920px}
.push-24{margin:0 -960px 1.5em 960px}
.push-1,.push-2,.push-3,.push-4,.push-5,.push-6,.push-7,.push-8,.push-9,.push-10,.push-11,.push-12,.push-13,.push-14,.push-15,.push-16,.push-17,.push-18,.push-19,.push-20,.push-21,.push-22,.push-23,.push-24{float:left;position:relative}
div.prepend-top,.prepend-top{margin-top:1.5em}
div.append-bottom,.append-bottom{margin-bottom:1.5em}
.box{padding:1.5em;margin-bottom:1.5em;background:#e5eCf9}
hr{background:#ddd;color:#ddd;clear:both;float:none;width:100%;height:1px;margin:0 0 1.45em;border:0}
hr.space{background:#fff;color:#fff;visibility:hidden}
.clearfix:after,.container:after{content:"\0020";display:block;height:0;clear:both;visibility:hidden;overflow:hidden}
.clearfix,.container{display:block}
.clear{clear:both} |
gluefun/static/style/base.css | jeffcole/gluefun | #working {
text-align: center;
}
#complete {
display: none;
}
.progress, #results {
margin: 40px 0;
}
|
modules/wwi/design/scroll.css | colohr/wwi |
[scroll]{ overflow:hidden; overflow-y:auto; }
[scroll]::-webkit-scrollbar { height: 13px; overflow: visible; width: 13px; }
[scroll]::-webkit-scrollbar-button { height: 0; width: 0; }
[scroll]::-webkit-scrollbar-corner { background: rgba(0, 0, 0, 0); }
[scroll]::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, .2);
background-clip: padding-box;
border: solid rgba(0, 0, 0, 0);
min-height: 28px;
padding: 100px 0 0;
border-radius: 100px;
box-shadow: inset 0px 0px 0 1px rgba(255, 255, 255, .1), inset 1px 1px 0 rgba(0, 0, 0, .1), inset 0 -1px 0 rgba(0, 0, 0, .07);
}
[scroll]::-webkit-scrollbar-track {
background-clip: padding-box;
border: solid rgba(0, 0, 0, 0);
border-width: 0 0 0 4px;
}
[scroll]::-webkit-scrollbar-track-piece {
background-clip: padding-box;
background-color: rgba(245, 245, 245, 0.47);
border: solid rgba(245, 245, 245, 0.47);
border-width: 0 0 0 3px;
}
|
hwdoc/templates/hwdocindex.html | apoikos/servermon | {% extends "generic.html" %}
{% load i18n %}
{% block heading %}{% trans "Welcome to hwdoc" %}{% endblock %}
{% block content %}
<div>
<h2>{% trans "List of Datacenters" %}</h2>
<div class="indexpagediv">
{% for datacenter in datacenters %}
<a href="{% url hwdoc.views.datacenter datacenter.pk %}">{{ datacenter }}</a>
{% if not forloop.last %} | {% endif %}
{% endfor %}
</div>
<h2>{% trans "List of Projects" %}</h2>
<div class="indexpagediv">
{% for project in projects %}
<a href="{% url hwdoc.views.project project.pk %}">{{ project.name }}</a>
{% if not forloop.last %} | {% endif %}
{% endfor %}
</div>
<hr>
<h1>Quick Searches</h1>
<h2>{% trans "Search by Rack" %}</h2>
<div class="indexpagediv">
{% for rack in racks %}
<a href="{% url hwdoc.views.search %}?q={{ rack }}">{{ rack }}</a>
{% if not forloop.last %} | {% endif %}
{% endfor %}
</div>
<h2>{% trans "Search by Vendor Models" %}</h2>
<div class="indexpagediv">
{% for model in models %}
<a href="{% url hwdoc.views.search %}?q={{ model.name }}">{{ model.vendor.name }} {{ model.name}}</a>
{% if not forloop.last %} | {% endif %}
{% endfor %}
</div>
<h2>{% trans "Search by Project" %}</h2>
<div class="indexpagediv">
{% for project in projects %}
<a href="{% url hwdoc.views.search %}?q={{ project.name }}">{{ project.name }}</a>
{% if not forloop.last %} | {% endif %}
{% endfor %}
</div>
</div>
{% endblock %}
|
public/css/style.css | dipeshkhakhkhar/fashiondiscovery | .item {
width: 220px;
margin: 10px;
float: left;
}
.item2 {
width: 170px;
margin: 10px;
float: left;
}
.title {
font-size: 28px;
}
.blurb {
font-size: 20px;
}
|
index.html | basskibo/basskibo.github.io | <!doctype html>
<html xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, maximum-scale=1">
<meta name="author" content="Bojan Jagetic">
<meta name="description" lang="rs"
content="Iguana Development,najpovoljniji ali i najkvalitetnija izrada sajtova.Veoma povoljno izradjujemo sajt po vasoj zejli.Javite nam se i za vas cemo kreirati unikatan sajt i pomoci vasem biznisu da poraste.">
<meta name="keywords" content="izrada,izrada sajta,pravljenje sajta,povoljno,povoljno izrada sajta,web stranice,websajtovi,jeftino,najjeftinije">
<link rel="alternate" hreflang="rs" href="http://iguanadevelopment.com">
<title>Iguana Development</title>
<link rel="shortcut icon" href="img/main/mini1.png" type="img/x-icon">
<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,800italic,700italic,600italic,400italic,300italic,800,700,600'
rel='stylesheet' type='text/css'>
<!-- <link href="https://fonts.googleapis.com/css?family=Raleway|Suez+One" rel="stylesheet">
-->
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="css/style.css" rel="stylesheet" type="text/css">
<link href="css/font-awesome.css" rel="stylesheet" type="text/css">
<link href="css/responsive.css" rel="stylesheet" type="text/css">
<link href="css/animate.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/theme.css" type="text/css"/>
<link rel="stylesheet" href="css/pricing.css" type="text/css"/>
<!--Other libaries -->
<!-- <script type="text/javascript" src="js/jquery.1.8.3.min.js"></script>
-->
</head>
<body>
<?php include_once("analyticstracking.php") ?>
<div style="overflow:hidden;">
<div class="header" id="header"><!--header-start-->
<div class="container">
<figure class="logo animated fadeInDown delay-05s">
<a href="#"><img src="img/main/logo.png" alt=""></a>
</figure>
<h1 class="animated fadeInDown delay-05s"><span class="trn"
data-trn-key="WELCOME">Welcome To Iguana Development</span>
</h1>
<ul class="we-create animated fadeInUp delay-2s">
<li><span class="trn" data-trn-key="WELCOME2"> Where your dreams come true.</span></li>
</ul>
<a class="link animated fadeInUp delay-2s" href="#test"><span class="trn" data-trn-key="GETSTARTED">Get Started</span>
</a>
</div>
</div>
</div>
<!--TODO pogledati zasto header nije fiksiran vec se izmesa sa servisom-->
<div class="main-nav-outer" id="test"><!--main-nav-start-->
<ul class="main-nav">
<div class="container1">
<div class="navimg"><img class="imgsl" src="img/main/small-logo.png"/></div>
</div>
<!--<li><a href="#header">Home</a></li>-->
<li><a href="#service" class="trn menuBtn" data-trn-key="SERVICE">Services</a></li>
<li><a href="#portfolio" class="trn menuBtn" data-trn-key="PORTFOLIO">Portfolio</a></li>
<li><a href="#team" class="trn menuBtn" data-trn-key="TEAM">Team</a></li>
<li><a href="#pricing" class="trn menuBtn" data-trn-key="PRICING">pricing</a></li>
<li><a href="#contact" class="trn menuBtn" data-trn-key="CONTACT">Contact Us</a></li>
<li>
<button class="btn langBtn lang_selector trn" data-value="rs"><img src="img/flag/rs.png" width="30"
height="30"/></button>
<button class="btn langBtn lang_selector trn" data-value="en"><img src="img/flag/en.png" width="30"
height="30"/></button>
</li>
</ul>
<a class="res-nav_click" href="#"><i class="fa-bars"></i></a>
</div>
<!--main-nav-end-->
<section class="main-section alabaster" id="service"><!--main-section-start-->
<div class="container">
<h2 class="trn" data-trn-key="SERVICE">Services</h2>
<h6 class="trn" data-trn-key="SERVICE2">We offer exceptional service with complimentary hugs</h6>
<hr class="style14">
<br>
<div class="row">
<h3 class="wow fadeInLeft delay-05s" style="font-size:25px;margin-left:5px;"> Web Development</h3>
<br/>
<div class="col-lg-4 col-sm-6 wow fadeInLeft delay-05s">
<div class="service-list">
<div class="service-list-col1">
<i class="fa fa-code" aria-hidden="true"></i>
</div>
<div class="service-list-col2">
<h3>web development</h3>
<p class="trn" data-trn-key="WEB_DEVELOPMENT_INFO">Izrada web stranica kao i aplikacija
jedinstvenog izgleda, prilagodjene i optimizovane svim
uredjajima. U dogovoru sa vama dolazimo
do najbolje moguce implementacije vasih ideja.</p>
</div>
</div>
<div class="service-list">
<div class="service-list-col1">
<i class="fa fa-eye" aria-hidden="true"></i>
</div>
<div class="service-list-col2">
<h3 class="trn" data-trn-key="OPTIMIZACIJA">Optimizacija sajta</h3>
<p class="trn" data-trn-key="OPTIMIZACIJA_INFO">Veoma bitan segment izrade svakog sajta.Mi
posebno vodimo racuna da stranice budu
prilagođene
svim pretraživačima poput Google Chrome, Safari, Mozilla Firefox itd.</p>
</div>
</div>
<div class="service-list">
<div class="service-list-col1">
<i class="fa fa-signal" aria-hidden="true"></i>
</div>
<div class="service-list-col2">
<h3 class="trn" data-trn-key="ANALITIKA">Web Analitika</h3>
<p class="trn" data-trn-key="ANALITIKA_INFO">Omogućavamo Vam uvid u broj poseta dnevno,
nedeljno, mesečno, sa koje lokacije su Vaši
posetioci najzastupljeniiji, koliko su se zadržali na stranici i
koje su stranice najpopularnije Vašim posetiocima kao i mnoge druge korisne informacije.</p>
</div>
</div>
<div class="service-list">
<div class="service-list-col1">
<i class="fa fa-globe" aria-hidden="true"></i>
</div>
<div class="service-list-col2">
<h3 class="trn" data-trn-key="DVOJEZICNOST">Dvojezična stranica</h3>
<p class="trn" data-trn-key="DVOJEZICNOST_INFO">Nudimo vam i dvojezični prikaz web stranice,
zbog lakšeg sporazumevanja sa potrošačima širom sveta.</p>
</div>
</div>
<div class="service-list">
<div class="service-list-col1">
<i class="fa-money"></i>
</div>
<div class="service-list-col2">
<h3 class="trn" data-trn-key="POVOLJNO">Veoma povoljno</h3>
<p class="trn" data-trn-key="POVOLJNO_INFO">Ukoliko Vam navedene cene ne odgovaraju,
kontaktirajte nas i osmislicemo paket samo za vas po
ceni koja odgovara Vasem budzetu.</p>
</div>
</div>
</div>
<figure class="col-lg-8 col-sm-6 text-right wow fadeInUp delay-02s">
<img src="img/main/macbook-pro.png" alt="">
</figure>
</div>
<br>
<hr class="style14">
<br>
<div class="row">
<br/>
<h3 data-trn-key="BREND_NASLOV" class="wow fadeInLeft delay-05s trn"
style="font-size:25px; margin-left:5px;"> Branding and indentity</h3>
<br/>
<div class="col-sm-12 wow fadeInLeft delay-05s">
<div class="service-list col-sm-6">
<div class="service-list-col1">
<i class="fa fa-facebook" aria-hidden="true"></i>
</div>
<div class="service-list-col2">
<h3 class="trn" data-trn-key="DMREZE">Reklamirajte se na drustvenim mrezama</h3>
<p class="trn" data-trn-key="DMREZE_INFO">U danasnje vreme drustvene mreze igraju najvecu ulogu
u savremenom marketingu. Mi Vam nudimo
otvaranje i odrzavanje stranica na
najpopularnijim socijalnim mrezama poput Facebook, Twitter, Instagram kao i mnogi drugi koji
imaju milione aktivnih korisnika.</p>
</div>
</div>
<div class="service-list col-sm-6">
<div class="service-list-col1">
<i class="fa fa-magic" aria-hidden="true"></i>
</div>
<div class="service-list-col2">
<h3 class="trn" data-trn-key="BREND">Dizajn Logotipa</h3>
<p class="trn" data-trn-key="BREND_INFO">Nudimo Vam i dizajn jedinstvenog logotipa ili redizajn
postojeceg, pomocu kojeg
ce Vas lakse prepoznati na trzistu.
Takodje dizajniramo i vizitkarte, flajere, plakate i ostali reklamni materijal.</p>
</div>
</div>
</div>
</div>
<br>
<hr class="style14">
<br>
<div class="row">
<h3 class="wow fadeInLeft delay-05s trn" data-trn-key="MOBILE_DEV" style="font-size:25px;margin-left:5px;">
Mobile Development</h3>
<br/>
<div class="col-lg-4 col-sm-6 wow fadeInLeft delay-05s">
<div class="service-list">
<div class="service-list-col1">
<i class="fa-android"></i>
</div>
<div class="service-list-col2">
<h3 class="trn" data-trn-key="MOBILEDEV">Android</h3>
<p class="trn" data-trn-key="MOBILEDEV_INFO">We are developing mobile apps in frameworks like
Ionic and phonegap.More you can find in our
portfolio.</p>
</div>
</div>
<div class="service-list">
<div class="service-list-col1">
<i class="fa-apple"></i>
</div>
<div class="service-list-col2">
<h3 class="trn" data-trn-key="MOBILEDEV2">Mobile Development</h3>
<p class="trn" data-trn-key="MOBILEDEV_INFO2">We are developing mobile apps in frameworks like
Ionic and phonegap.More you can find in our
portfolio.</p>
</div>
</div>
<div class="service-list">
<div class="service-list-col1">
<i class="fa-support"></i>
</div>
<div class="service-list-col2">
<h3 class="trn" data-trn-key="PODRSKA">Support</h3>
<p class="trn" data-trn-key="PODRSKA_INFO">If you have some questions or need our help,contact
us and our support team will answer in no
time.</p>
</div>
</div>
</div>
<figure class="col-lg-8 col-sm-6 text-right wow fadeInUp delay-02s">
<img src="img/main/iphone.png" alt="">
</figure>
</div>
</div>
</section><!--main-section-end-->
<section class="main-section paddind" id="portfolio"><!--main-section-start-->
<div class="container">
<h2 class="trn" data-trn-key="PORTFOLIOimg">Portfolio</h2>
<h6 class="trn" data-trn-key="PORTFOLIOopis">Ovde možete videti naše dosadašnje radove.</h6>
<div class="portfolioFilter">
<ul class="Portfolio-nav wow fadeIn delay-02s">
<li><a href="#" data-filter="*" class="trn" data-trn-key="ALL">>All</a></li>
<li><a href="#" data-filter=".webdevelopment" class="trn" data-trn-key="WEBDEVELOPMENT"> >Web
development</a></li>
<li><a href="#" data-filter=".branding" class="trn" data-trn-key="BREND"> >Logo design</a></li>
<li><a href="#" data-filter=".poster">Poster design</a></li>
<li><a href="#" data-filter=".android">Mobile development</a></li>
</ul>
</div>
</div>
<div class="portfolioContainer wow fadeInUp delay-04s">
<div class=" Portfolio-box webdevelopment">
<a href="http://danisporta.com" target="_blank"><img src="img/portfolio/webdev1.jpg" alt="dani sporta"></a>
<h3>Dani sporta</h3>
<p>Web development</p>
</div>
<div class=" Portfolio-box branding">
<a class="pop "><img src="img/portfolio/majgor_logo.jpg" alt="Majgor logo" style="width: 262px;"></a>
<h3>Majgor</h3>
<p class="trn" data-trn-key="BREND">Branding</p>
</div>
<div class=" Portfolio-box branding">
<a class="pop "><img src="img/portfolio/majgor_tshirt.jpg" alt="Majgor T-shirt" style="width: 262px;"></a>
<h3>Majgor T-shirt</h3>
<p class="trn" data-trn-key="BREND">Branding</p>
</div>
<div class=" Portfolio-box webdevelopment">
<a href="http://iguanadevelopment.com/jageticbojan/" target="_blank"><img
src="img/portfolio/webdev2.jpg" alt="Jagetic Bojan portofolio"></a>
<h3>Jagetc Bojan Portofolio</h3>
<p>Web development</p>
</div>
<div class=" Portfolio-box webdevelopment">
<a href="https://kutakzadecu.wordpress.com/" target="_blank"><img src="img/portfolio/webdev4.jpg"
alt="dani sporta"></a>
<h3>Kutak Za Decu</h3>
<p>Web development</p>
</div>
<div class=" Portfolio-box webdevelopment">
<a href="https://edu4geeks.wordpress.com/" target="_blank"><img src="img/portfolio/webdev5.jpg"
alt="dani sporta"></a>
<h3>Edu4geeks</h3>
<p>Web development</p>
</div>
<div class=" Portfolio-box branding">
<a class="pop "><img src="img/portfolio/igi.png" alt="Igi Second Hand Shop"></a>
<h3>Igi Second Hand Shop</h3>
<p class="trn" data-trn-key="BREND">Branding</p>
</div>
<div class=" Portfolio-box branding">
<a class="pop "><img src="img/portfolio/logodesign3.jpg" alt="Jules Verne band"></a>
<h3>Jules Verne</h3>
<p class="trn" data-trn-key="BREND">Branding</p>
</div>
<div class=" Portfolio-box branding">
<a class="pop "><img src="img/portfolio/logodesign4.jpg" alt="Relax Beba"></a>
<h3>Relax Beba</h3>
<p class="trn" data-trn-key="BREND">Branding</p>
</div>
<div class=" Portfolio-box webdevelopment">
<a href="http://bladesign.tk" target="_blank"><img src="img/portfolio/webdev3.jpg" alt="dani sporta"></a>
<h3>Bla Design</h3>
<p>Web development</p>
</div>
<div class=" Portfolio-box webdevelopment">
<a class="pop" href="https://verskaskola.wordpress.com/" target="_blank"><img src="img/portfolio/verska_skola.png" alt="Super Sneaks"></a>
<h3>Verska skola</h3>
<p>Web Development</p>
</div>
<div class=" Portfolio-box poster">
<a class="pop "><img src="img/portfolio/jesen.jpg" alt="Jesen"></a>
<h3>Jesen</h3>
<p>Poster</p>
</div>
<div class=" Portfolio-box android">
<a class="pop "><img src="img/portfolio/apk1.png" alt="Iguana Mobile Application"></a>
<h3>Iguana Dev</h3>
<p>Mobile development</p>
</div>
<div class=" Portfolio-box poster">
<a class="pop"><img src="img/portfolio/plakat_pikado.jpg" alt="Jelen Dart Championship"></a>
<h3>Plakat "Jelen Dart Championship"</h3>
<p>Poster</p>
</div>
<div class=" Portfolio-box poster">
<a class="pop"><img src="img/portfolio/plakat_fudbal.jpg" alt="Turnir U Fudbalu"></a>
<h3>Plakat "Turnir U Fudbalu"</h3>
<p >Poster</p>
</div>
<div class=" Portfolio-box branding">
<a class="pop"><img src="img/portfolio/logodesign1.jpg" alt="Bla Design"></a>
<h3>Bla Design</h3>
<p class="trn" data-trn-key="BREND">Branding</p>
</div>
<div class=" Portfolio-box branding">
<a class="pop "><img src="img/portfolio/njuske.png" alt="Njuske punk band"></a>
<h3>Njuske punk band</h3>
<p class="trn" data-trn-key="BREND">Branding</p>
</div>
<div class=" Portfolio-box poster">
<a class="pop"><img src="img/portfolio/plakat_stonitenis.jpg" alt="Turnir U Stonom Tenisu"></a>
<h3>Plakat "Turnir U Stonom Tenisu"</h3>
<p>Poster</p>
</div>
<div class=" Portfolio-box poster">
<a class="pop"><img src="img/portfolio/reggaeFest.png" alt="Reggae Fest"></a>
<h3>Reggae Fest</h3>
<p>Poster</p>
</div>
<div class=" Portfolio-box poster">
<a class="pop"><img src="img/portfolio/plakat_kosarka.jpg" alt="Turnir Trofej Novo Naselje"></a>
<h3>Plakat "Trofej Novo Naselje"</h3>
<p>Poster</p>
</div>
<div class=" Portfolio-box webdevelopment">
<a href="https://margotsavin.github.io/MargotSavin/" target="_blank"><img src="img/portfolio/margotSavin.png"
alt="dani sporta"></a>
<h3>Margot Savin Art</h3>
<p>Web development</p>
</div>
</div>
</section>
<section class="main-section team alabaster" id="team"><!--main-section team-start-->
<div class="container">
<h2 class="trn" data-trn-key="TEAMinfo">Meet our team</h2>
<h6 class="trn" data-trn-key="TEAMdetail">Here you can see more informations about our team.</h6>
<div class="team-leader-block clearfix">
<div class="team-leader-box">
<div class="team-leader wow fadeInDown delay-03s">
<div class="team-leader-shadow"><a href="#"></a></div>
<img src="img/team/team-leader-pic1.jpg" alt="">
<ul>
<li><a href="https://www.facebook.com/dragan.spancic?fref=ts" class="fa-facebook"></a></li>
<li><a href="#" class="fa-dribbble"></a></li>
<li><a href="https://github.com/gobla94srbija" class="fa-github"></a></li>
</ul>
</div>
<h3 class="wow fadeInDown delay-03s">Dragan Spancic</h3>
<span class="trn" data-trn-key="COFOUNDER"> Co-founder</span>
<span class="trn" data-trn-key="DESIGNER">Designer / Web Developer </span>
</div>
<div class="team-leader-box">
<div class="team-leader wow fadeInDown delay-06s">
<div class="team-leader-shadow"><a href="#"></a></div>
<img src="img/team/team-leader-pic2.jpg" alt="">
<ul>
<li><a href="https://www.facebook.com/basskibo" class="fa-facebook"></a></li>
<li><a href="https://twitter.com/basskiboJS" class="fa-twitter"></a></li>
<li><a href="https://rs.linkedin.com/in/bojan-jagetic-972203106" class="fa-linkedin"></a></li>
<li><a href="https://github.com/basskibo" class="fa-github"></a></li>
</ul>
</div>
<h3 class="wow fadeInDown delay-06s">Bojan Jagetic</h3>
<span class="trn" data-trn-key="CEOCOFOUNDER">CEO / Co-founder</span>
<span class="wow fadeInDown delay-06s">Web/Mobile Developer</span>
</div>
<div class="team-leader-box">
<div class="team-leader wow fadeInDown delay-09s">
<div class="team-leader-shadow"><a href="#"></a></div>
<img src="img/team/team-leader-pic3.jpg" alt="">
<ul>
<li><a href="https://www.facebook.com/teodoradzabu.lepojevic?fref=ts" class="fa-facebook"></a>
</li>
<li><a href="https://www.instagram.com/teodora.9/" class="fa-instagram"></a></li>
</ul>
</div>
<h3 class="wow fadeInDown delay-09s">Teodora Lepojevic</h3>
<span class="trn" data-trn-key="COFOUNDER">Co-founder</span>
<p class="wow fadeInDown delay-09s">Marketing expert</p>
</div>
<!--<div class="team-leader-box">-->
<!--<div class="team-leader wow fadeInDown delay-12s">-->
<!--<div class="team-leader-shadow"><a href="#"></a></div>-->
<!--<img src="img/team/team-leader-pic3.jpg" alt="">-->
<!--<ul>-->
<!--<li><a href="#" class="fa-facebook"></a></li>-->
<!--<li><a href="#" class="fa-instagram"></a></li>-->
<!--<li><a href="#" class="fa-google-plus"></a></li>-->
<!--</ul>-->
<!--</div>-->
<!--<h3 class="wow fadeInDown delay-09s">Zelenovic Borisa</h3>-->
<!--<span class="trn" >Associate</span>-->
<!--<p class="wow fadeInDown delay-09s">Web developer</p>-->
<!--</div>-->
<!--<div class="team-leader-box">-->
<!--<div class="team-leader wow fadeInDown delay-15s">-->
<!--<div class="team-leader-shadow"><a href="#"></a></div>-->
<!--<img src="img/team/team-leader-pic3.jpg" alt="">-->
<!--<ul>-->
<!--<li><a href="#" class="fa-facebook"></a></li>-->
<!--<li><a href="#" class="fa-instagram"></a></li>-->
<!--<li><a href="#" class="fa-google-plus"></a></li>-->
<!--</ul>-->
<!--</div>-->
<!--<h3 class="wow fadeInDown delay-09s">Momir Jokic</h3>-->
<!--<span class="trn" >Associate</span>-->
<!--<p class="wow fadeInDown delay-09s">Photographer</p>-->
<!--</div>-->
</div>
</div>
</section>
<!--PRICE-->
<section class="main-section contact" id="pricing">
<h2 class="trn" data-trn-key="PRICING">Pricing</h2>
<h6 class="trn" data-trn-key="PRICING_MORE">Pricing</h6>
<div class="cd-pricing-container cd-has-margins">
<ul class="cd-pricing-list cd-bounce-invert">
<li>
<ul class="cd-pricing-wrapper">
<li data-type="web" class="is-visible">
<header class="cd-pricing-header">
<h2 class="cd-currency trn" data-trn-key="WEBSITE">BRANDING</h2>
<div class="cd-price">
<span class="cd-currency trn" data-trn-key="FROM">from</span>
<span class="cd-value">50€</span>
</div>
</header> <!-- .cd-pricing-header -->
<div class="cd-pricing-body">
<ul class="cd-pricing-features">
<li class="trn" data-trn-key="UNIDIZ"> Unikatan dizajn</li>
<li class="trn" data-trn-key="RESSTR">Responsive stranice</li>
<!--TODO GOBLINE ubaci tooltip bootstrapov,pogledaj to,probaj sam vise mozes videti ovde http://www.w3schools.com/bootstrap/bootstrap_tooltip.asp-->
<li class="trn" data-trn-key="SEOO"> SEO optimizacija</li>
<li class="trn" data-trn-key="KONF"> Kontakt forma</li>
<li class="trn" data-trn-key="VISJ">Visejezicnost</li>
<li class="trn" data-trn-key="PODIODR">Podrska i odrzavanje</li>
</ul>
</div> <!-- .cd-pricing-body -->
<footer class="cd-pricing-footer">
<a type="button" class=" trn cd-select" data-toggle="modal" data-trn-key="SEE_MORE"
data-target=".modal-web-lg">See more
</a>
</footer> <!-- .cd-pricing-footer -->
</li>
</ul> <!-- .cd-pricing-wrapper -->
</li>
<li class="cd-popular">
<ul class="cd-pricing-wrapper">
<li data-type="branding" class="is-visible">
<header class="cd-pricing-header">
<h2 class="cd-currency trn" data-trn-key="BREND">BRANDING</h2>
<div class="cd-price">
<span class="cd-currency trn" data-trn-key="FROM">from</span>
<span class="cd-value">20€</span>
</div>
</header> <!-- .cd-pricing-header -->
<div class="cd-pricing-body">
<ul class="cd-pricing-features">
<li class="trn" data-trn-key="OTDM">Otvaranje drustvenih mreza</li>
<li class="trn" data-trn-key="ODRDM">Odrzavanje drustvenih mreza</li>
<li class="trn" data-trn-key="DL">Dizajn logotipa</li>
<li class="trn" data-trn-key="DFC">Dizajn flajera, cenovnika</li>
<li class="trn" data-trn-key="DVK">Dizajn vizit kartica</li>
<li class="trn" data-trn-key="DORM">Dizajn ostalog reklamnog materijala</li>
</ul>
</div> <!-- .cd-pricing-body -->
<footer class="cd-pricing-footer">
<a type="button" class=" trn cd-select" data-toggle="modal" data-trn-key="SEE_MORE"
data-target=".modal-branding-lg">See more
</a>
</footer> <!-- .cd-pricing-footer -->
</li>
</ul> <!-- .cd-pricing-wrapper -->
</li>
<li>
<ul class="cd-pricing-wrapper">
<li data-type="monthly" class="is-visible">
<header class="cd-pricing-header">
<h2 class="cd-currency trn" data-trn-key="APPLICATION">MOBILE</h2>
<div class="cd-price">
<span class="cd-currency trn" data-trn-key="FROM">from</span>
<span class="cd-value">300€</span>
</div>
</header> <!-- .cd-pricing-header -->
<div class="cd-pricing-body">
<ul class="cd-pricing-features">
<li class="trn" data-trn-key="WA">Web aplikacije</li>
<li class="trn" data-trn-key="MA">Mobilne aplikacije</li>
<li class="trn" data-trn-key="BP">Baza podataka</li>
<li class="trn" data-trn-key="CMSS">CMS Sistem</li>
<li class="trn" data-trn-key="WPIB">Web portal ili blog</li>
<li class="trn" data-trn-key="WP">Web prodavnica</li>
</ul>
</div> <!-- .cd-pricing-body -->
<footer class="cd-pricing-footer">
<a type="button" class="trn cd-select" data-toggle="modal" data-trn-key="SEE_MORE"
data-target=".modal-mobile-lg">See more
</a>
</footer> <!-- .cd-pricing-footer -->
</li>
</ul> <!-- .cd-pricing-wrapper -->
</li>
</ul> <!-- .cd-pricing-list -->
</div>
<!-- .cd-pricing-container -->
</section>
<section class="main-section contact alabaster" id="contact">
<h2 class="trn" data-trn-key="CONTACT">Kontaktirajte nas </h2>
<h6 class="trn" data-trn-key="CONTACT_MORE">Here you can see more informations about our team.</h6>
<div class="row no-margin">
<div class="col-lg-5 col-sm-6 wow fadeInLeft">
<div class="contact-info-box address clearfix">
<h3><i class=" icon-map-marker"></i><span class="trn" data-trn-key="ADRESS">Adresa:</span></h3>
<br/>
<span>Srbija, Novi Sad, 21000.</span>
</div>
<div class="contact-info-box phone clearfix">
<h3><i class="fa-phone"></i><span class="trn" data-trn-key="TELEPHONE">Telefon:</span></h3>
<br/>
<span>063-7343-239</span>
</div>
<div class="contact-info-box email clearfix">
<h3><i class="fa-envelope-o"></i><span class="trn" data-trn-key="EMAIL2">Email:</span></h3>
<br/>
<span>iguana.development.ns@gmail.com
</span>
</div>
<ul class="social-link">
<li class="facebook"><a href="https://www.facebook.com/iguanadevelopment/?fref=ts"
target="_blank"><i class="fa-facebook"></i></a></li>
<li class="twitter"><a href="https://twitter.com/IguanaDev" target="_blank"><i
class="fa-twitter"></i></a></li>
<li class="gplus"><a href="https://plus.google.com/u/1/116938345126384793153/posts?hl=sr"
target="_blank"><i class="fa-google-plus"></i></a></li>
</ul>
</div>
<form action="https://formspree.io/jageticb@yahoo.com" method="POST"
class="col-lg-6 col-sm-6 wow fadeInUp delay-05s">
<label for="name" class="trn" data-trn-key="NAME">Your name </label>
<input class="input-text" type="text" name="name" id="name"
onfocus="if(this.value==this.defaultValue)this.value='';"
onblur="if(this.value=='')this.value=this.defaultValue;">
<label for="email" class="trn" data-trn-key="EMAIL"> Your email: </label>
<input class="input-text" type="email" name="_replyto" id="email"
onfocus="if(this.value==this.defaultValue)this.value='';"
onblur="if(this.value=='')this.value=this.defaultValue;">
<label for="info" class="trn" data-trn-key="INFO"> How did you find us?</label>
<select id="info" name="info" class="form-control" style="margin:15px 0px;">
<option class="trn" data-trn-key="OPT">Direktno</option>
<option class="trn" data-trn-key="OPT2">Preko Facebook-a</option>
<option class="trn" data-trn-key="OPT3">Preko Oglasa</option>
<option class="trn" data-trn-key="OPT1" selected>Preko prijatelja</option>
</select>
<label for="message" class="trn" data-trn-key="MESSAGE">Your message </label>
<textarea class="input-text text-area" cols="0" name="message" rows="0" id="message"
onfocus="if(this.value==this.defaultValue)this.value='';"
onblur="if(this.value=='')this.value=this.defaultValue;"></textarea>
<input type="hidden" name="_subject" value="Imamo novu poruku preko sajta ! Hooray! " />
<input type="hidden" name="_next" value="http://iguanadevelopment.com/" />
<input type="hidden" name="_cc" value="iguana.development.ns@gmail.com,jagetic.bojan@gmail.com,draganspancicnovisad@gmail.com" />
<div class="g-recaptcha" data-sitekey="6LeBTxMUAAAAAGCVSUOBGfl0pUJVdTuETe7V3Umy"></div>
<button class="btn btn-warning input-btn trn" type="submit" data-trn-key="SEND_MESSAGE">Send</button>
</form>
</div>
</section>
<!-- loader -->
<div id="loader-wrapper">
<div id="loader"></div>
<div class="loader-section section-left"></div>
<div class="loader-section section-right"></div>
</div>
<footer class="footer">
<div class="container">
<span class="copyright">Copyright © 2016 | <a href="#">Iguana Development</a></span>
</div>
</footer>
<!-- MODALS -->
<!--APPLICATION-->
<div class="modal fade modal-mobile-lg" tabindex="-1" role="dialog" aria-labelledby="mobileDev">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true">×</span></button>
<h4 class="modal-title trn" data-trn-key="APPLICATION" id="mobileDev">Mobile Development</h4>
</div>
<div class="modal-body">
<div class="onePackage">
<div class="name trn" data-trn-key="WA">Web Aplikacija</div>
<div class="priceNot trn" data-trn-key="DOGOVOR">po dogovoru</div>
<div class="package">
<ul class="packageUl" style="margin-top:10px;">
<li class="trn" data-trn-key="SSIIW">Sve sto ima i website</li>
<li class="trn" data-trn-key="BPMQ">Baza podataka (MySQL,PostgreSQL,MSQL,MongoDB)</li>
<li class="trn" data-trn-key="CMSSSS">CMS Sistem, odnosno samostalno uredjivanje i
postavljanje novog materijala
</li>
<li class="trn" data-trn-key="VISJ">Dvojezicnost</li>
<li class="trn" data-trn-key="INSDS">Integracija sa drugim sistemima</li>
<li class="trn" data-trn-key="WFWPB">Web forum, web prodavnica, blog</li>
</ul>
</div>
</div>
<div class="onePackage">
<div class="name trn" data-trn-key="MA">Mobilna Aplikacija</div>
<div class="priceNot trn" data-trn-key="DOGOVOR">po dogovoru</div>
<div class="package ">
<ul class="packageUl" style="margin-top:10px;">
<li class="trn" data-trn-key="IZPVZ">Izrada po Vasoj zelji</li>
<li class="trn" data-trn-key="AOS">Android operativni sistem</li>
<li class="trn" data-trn-key="IOSOS">IOS operativni sistem</li>
</ul>
</div>
</div>
<div class="onePackage">
<div class="name trn" data-trn-key="WEBMA">Web + Mobilna Aplikacija</div>
<div class="priceNot trn" data-trn-key="DOGOVOR">po dogovoru</div>
<div class="package brilliant">
<ul class="packageUl" style="margin-top:10px;">
<li class="trn" data-trn-key="OVPRIMCGI">Osmislite vase poslovno resenje i mi cemo ga
implementirati
</li>
<li class="trn" data-trn-key="SOVPMVBDIPMU">Sa ovim paketom Vasi podaci mogu Vam biti
dostupni i preko mobilnog uredjaja
</li>
</ul>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-warning input-btn trn" data-dismiss="modal" class="trn"
data-trn-key="ZATVORI">Close
</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<!--WEBSITE-->
<div class="modal fade modal-web-lg" tabindex="-1" role="dialog" aria-labelledby="webDev">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true">×</span></button>
<h4 class="modal-title" id="webDev">Website</h4>
</div>
<div class="modal-body">
<div class="onePackage">
<div class="name trn" data-trn-key="BASICP">BASIC Paket</div>
<div class='priceNot trn' data-trn-key="OD50E"></div>
<div class="package">
<ul class="packageUl">
<li class="trn" data-trn-key="D10S">do 10 stranica</li>
<li class="trn" data-trn-key="UNID">Unikatan dizajn</li>
<li class="trn" data-trn-key="RDPSU">Responsive dizaj, prilagodljiv svim uredjajima</li>
<li class="trn" data-trn-key="OSO">Osnovna SEO optimizacija</li>
<li class="trn" data-trn-key="KFF">Kontakt forma</li>
<li class="trn" data-trn-key="BDPGD">Besplatan domen prvih godinu dana</li>
</ul>
</div>
</div>
<div class="onePackage">
<div class="name trn" data-trn-key="CUSTOMP">Custom Paket</div>
<div class="priceNot trn" data-trn-key="DOGOVOR">po dogovoru</div>
<div class="package brilliant">
<ul class="packageUl" style="margin-top:10px;">
<li class="trn" data-trn-key="OPOSBSZ">Ovaj paket odredjujete sami,birate sta zelite i nakon
dogovora odredjujemo cenu u
dogovoru sa vama
</li>
<li class="trn" data-trn-key="FSPVZ">Forma sajta po Vasoj zelji</li>
</ul>
</div>
</div>
<div class="onePackage">
<div class="name trn" data-trn-key="NORMALP">NORMAL Paket</div>
<div class="priceNot trn" data-trn-key="OD150E">od 150e</div>
<div class="package">
<ul class="packageUl">
<li class="trn" data-trn-key="NBS">Neogranicen broj stranica</li>
<li class="trn" data-trn-key="UNID">Unikatan i responsive dizajn</li>
<li class="trn" data-trn-key="RDPSU">Responsive dizaj, prilagodljiv svim uredjajima</li>
<li class="trn" data-trn-key="NSEOO">Napredna SEO optimizacija</li>
<li class="trn" data-trn-key="KFF">Kontakt forma</li>
<li class="trn" data-trn-key="GALER">Galerija</li>
<li class="trn" data-trn-key="ANKET">Anketa</li>
<li class="trn" data-trn-key="BDPGD">Besplatan domen prvih godinu dana</li>
<li class="trn" data-trn-key="PFNM">Prikaz firme na mapi</li>
<li class="trn" data-trn-key="PSDM">Povezivanje sa drustvenim mrezama</li>
<li class="trn" data-trn-key="VISJ">Dvojezicnost</li>
</ul>
</div>
</div>
<div class="onePackage">
<div class="name trn" data-trn-key="REDISIGNP">REDISGN Paket</div>
<div class="priceNot trn" data-trn-key="OD10E">od 10e</div>
<div class="package">
<ul class="packageUl">
<li class="trn" data-trn-key="RKS">Redizajn kompletnog sajta</li>
<li class="trn" data-trn-key="ZFE">Zamena Flash elementa</li>
<!--TODO I ovde onaj tooltip u prevodu objasniti sta je i zasto-->
<li class="trn" data-trn-key="DNF">Dodavanje novih funkcionalnosti</li>
<li class="trn" data-trn-key="JIGSPS">Jednokratno ispravljanje gresaka sa postojeceg sajta
</li>
</ul>
</div>
</div>
<div class="onePackage">
<div class="name trn" data-trn-key="ODRZAVANJEP">Odrzavanje Paket</div>
<div class="priceNot trn" data-trn-key="OD10E">od 10e</div>
<div class="package">
<ul class="packageUl">
<li class="trn" data-trn-key="MASNSUZOVP">Mesecno azuriranje sadrzaja na sajtu u zavisnosti
od Vasih potreba
</li>
<li class="trn" data-trn-key="MBP">Mesecni bekap</li>
<!--TODO i ovde tooltip-->
</ul>
</div>
</div>
<!--<div class="onePackage">-->
<!--<div class="name">BUISNESS Paket</div>-->
<!--<div class='price3'>od 300e</div>-->
<!--<div class="package">-->
<!--<ul class="packageUl">-->
<!--<li>do 10 stranica</li>-->
<!--<li>Unikatan dizajn</li>-->
<!--<li>Responsive dizaj, prilagodljiv svim uredjajima</li>-->
<!--<li>Osnovna SEO optimizacija</li>-->
<!--<li>Kontakt forma</li>-->
<!--<li>Konsultacija oko domena</li>-->
<!--</ul>-->
<!--</div>-->
<!--</div>-->
<div class="modal-footer">
<button type="button" class="btn btn-warning input-btn trn" data-dismiss="modal" class="trn"
data-trn-key="ZATVORI">Close
</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
</div>
<div class="modal fade modal-branding-lg" tabindex="-1" role="dialog" aria-labelledby="brDev">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true">×</span></button>
<h4 class="modal-title trn" data-trn-key="BASM" id="brDev">Branding and Socijalne Mreze</h4>
</div>
<div class="modal-body">
<div class="onePackage">
<div class="name trn" data-trn-key="DRMRE">Drustvene mreze</div>
<div class="priceNot trn" data-trn-key="DOGOVOR">po dogovoru</div>
<div class="package brilliant">
<ul class="packageUl" style="margin-top:10px;">
<li class="trn" data-trn-key="ODMPSFTI">Otvaranje drustvenih mreza pre svega Facebook,
Twitter, Instagram ...
</li>
<li class="trn" data-trn-key="SODM">Svakodnevno odrzavanje drustvenih mreza</li>
<li class="trn" data-trn-key="OBNS">Objavljivanje novog sadrzaja</li>
<li class="trn" data-trn-key="KSPIFPC">Komuniciranje sa posetiocima i fanovima putem chata
</li>
</ul>
</div>
</div>
<div class="onePackage">
<div class="nametrn" data-trn-key="DIZAJN">Dizajn</div>
<div class="priceNot trn" data-trn-key="OD20E">od 20e</div>
<div class="package">
<ul class="packageUl">
<li class="trn" data-trn-key="DL">Dizajn logotipa</li>
<li class="trn" data-trn-key="DCEN">Dizajn cenovnika</li>
<li class="trn" data-trn-key="DFLAJ">Dizajn flajera</li>
<li class="trn" data-trn-key="DPIPO">Dizajn plakata i postera</li>
<li class="trn" data-trn-key="DVK">Dizajn vizit kartica</li>
<li class="trn" data-trn-key="DM">Dizajn majica</li>
<li class="trn" data-trn-key="DORM">Dizajn ostalog reklamog materijala</li>
</ul>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-warning input-btn trn" data-dismiss="modal" class="trn"
data-trn-key="ZATVORI">Close
</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<div class="modal fade" id="imagemodal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<input type="text" value="" class="imagename popTitle" style="background:#FFFFFF;" disabled/>
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span
class="sr-only">Close</span></button>
</div>
<div class="modal-body">
<img src="" class="imagepreview" style="width: 100%;">
</div>
</div>
</div>
</div>
<script type="text/javascript" src="js/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/jquery-scrolltofixed.js"></script>
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="js/jquery.isotope.js"></script>
<script type="text/javascript" src="js/wow.js"></script>
<script type="text/javascript" src="js/classie.js"></script>
<script type="text/javascript" src="js/jquery.translate.js"></script>
<script type="text/javascript" src="js/translations.js"></script>
<script type="text/javascript" src="js/jqBootstrapValidation.js"></script>
<!-- pricing -->
<script src="js/main.js"></script> <!-- Resource jQuery -->
<!--november slider-->
<script type="text/javascript" src="js/jquery.sudoSlider.min.js"></script>
<script type="text/javascript" src="js/global.js"></script>
<script type="text/javascript" src="js/modernizr.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#test').scrollToFixed();
$('.res-nav_click').click(function(){
$('.main-nav').slideToggle();
return false
});
//vrati menu nazad nakon klika na link
$('.menuBtn').click(function () {
$('.main-nav').slideToggle();
return false;
});
//vrati menu nazad nakon klika na button
$('.langBtn').click(function () {
$('.main-nav').slideToggle();
return false;
});
});
</script>
<script>
wow = new WOW(
{
animateClass: 'animated',
offset: 100
}
);
wow.init();
</script>
<script type="text/javascript">
$(window).load(function(){
$('.main-nav li a').bind('click',function(event){
var $anchor = $(this);
// usporeno
// $('html, body').stop().animate({
// scrollTop: $($anchor.attr('href')).offset().top - 102
// }, 1500,'easeInOutExpo');
//if you don't want to use the easing effects:
$('html, body').stop().animate({
scrollTop: $($anchor.attr('href')).offset().top
}, 1000);
event.preventDefault();
});
})
</script>
<script type="text/javascript">
$(window).load(function(){
var $container = $('.portfolioContainer'),
$body = $('body'),
colW = 375,
columns = null;
$container.isotope({
// disable window resizing
resizable: true,
masonry: {
columnWidth: colW
}
});
$(window).smartresize(function(){
// check if columns has changed
var currentColumns = Math.floor( ( $body.width() -30 ) / colW );
if ( currentColumns !== columns ) {
// set new column count
columns = currentColumns;
// apply width to container manually, then trigger relayout
$container.width( columns * colW )
.isotope('reLayout');
}
}).smartresize(); // trigger resize to set container width
$('.portfolioFilter a').click(function(){
$('.portfolioFilter .current').removeClass('current');
$(this).addClass('current');
var selector = $(this).attr('data-filter');
$container.isotope({
filter: selector
});
return false;
});
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-82504333-1', 'auto');
ga('send', 'pageview');
</script>
<script src='https://www.google.com/recaptcha/api.js'></script>
</body>
</html>
|
src/app/demo/mobile/tab/update-title/demo.component.html | rdkmaster/jigsaw | <!-- ignore the following lines, they are not important to this demo -->
<jigsaw-demo-description [summary]="summary" [content]="description">
</jigsaw-demo-description>
<!-- start to learn the demo from here -->
<jigsaw-mobile-button (click)="changeTitle()">change title</jigsaw-mobile-button>
<jigsaw-mobile-button (click)="changeLang()">
toggle change language
</jigsaw-mobile-button>
<jigsaw-mobile-tabs>
<jigsaw-mobile-tab-pane>
<div jigsaw-title>{{title}}</div>
<ng-template>tab content 1</ng-template>
</jigsaw-mobile-tab-pane>
<jigsaw-mobile-tab-pane title="{{'title2' | translate}}">
<ng-template>tab content 2</ng-template>
</jigsaw-mobile-tab-pane>
</jigsaw-mobile-tabs>
|
src/app/app.component.html | tiffanyrzhou/tiffanyrzhou.github.io | <!--The whole content below can be removed with the new code.-->
<div id = "main">
<ul >
<label id = "logo">TRZ</label>
<li><a>Contact</a></li>
<li><a>About Me</a></li>
<li><a>Projects</a></li>
<li><a>Home</a></li>
</ul>
</div>
|
clean/Linux-x86_64-4.05.0-2.0.6/released/8.5.1/flocq/3.2.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>flocq: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[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]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.5.1 / flocq - 3.2.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
flocq
<small>
3.2.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-07-19 14:21:56 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-07-19 14:21:56 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.12 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
coq 8.5.1 Formal proof management system.
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
# opam file:
opam-version: "2.0"
maintainer: "guillaume.melquiond@inria.fr"
homepage: "http://flocq.gforge.inria.fr/"
dev-repo: "git+https://gitlab.inria.fr/flocq/flocq.git"
bug-reports: "https://gitlab.inria.fr/flocq/flocq/issues"
license: "LGPL 3"
build: [
["./configure"]
["./remake" "-j%{jobs}%"]
]
install: ["./remake" "install"]
depends: [
"coq" {>= "8.7"}
]
tags: [ "keyword:floating point arithmetic" ]
authors: [ "Sylvie Boldo <sylvie.boldo@inria.fr>" "Guillaume Melquiond <guillaume.melquiond@inria.fr>" ]
synopsis: "A floating-point formalization for the Coq system"
url {
src: "https://gforge.inria.fr/frs/download.php/file/38103/flocq-3.2.0.tar.gz"
checksum: "sha512=de737c9dab61115cb8f0e145f6e8d7e0ec8c1de97afec77079a30fb3948eec2afa0e5b0568bd5a3f82939a2c18befa62073adfbbdcac31ab7775d8cc874f026a"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-flocq.3.2.0 coq.8.5.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.5.1).
The following dependencies couldn't be met:
- coq-flocq -> coq >= 8.7
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-flocq.3.2.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
doc/controller/class-use/DeleteState.html | rstancioiu/Dev-OO | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_79) on Fri Dec 04 09:49:40 CET 2015 -->
<title>Uses of Class controller.DeleteState</title>
<meta name="date" content="2015-12-04">
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class controller.DeleteState";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../controller/DeleteState.html" title="class in controller">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-files/index-1.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../index.html?controller/class-use/DeleteState.html" target="_top">Frames</a></li>
<li><a href="DeleteState.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class controller.DeleteState" class="title">Uses of Class<br>controller.DeleteState</h2>
</div>
<div class="classUseContainer">No usage of controller.DeleteState</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../controller/DeleteState.html" title="class in controller">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-files/index-1.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../index.html?controller/class-use/DeleteState.html" target="_top">Frames</a></li>
<li><a href="DeleteState.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
tags/culture/index.html | allamm/allamm.github.io | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/style.css">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-7127150942274088",
enable_page_level_ads: true
});
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-27643502-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-27643502-1');
</script>
<meta property="fb:pages" content="267523766781017" />
<title>Culture</title>
<link rel="canonical" href="https://www.allamericanmuslim.com/tags/culture/">
<meta property="og:locale" content="en-us">
<meta property="og:title" content="Culture">
<meta property="og:site_name" content="All American Muslim">
<meta property="og:description" content="">
<meta property="og:url" content="https://www.allamericanmuslim.com/tags/culture/">
<meta property="og:type" content="article">
<meta property="fb:app_id" content="347123062352978">
<meta http-equiv="cleartype" content="on">
<meta name="description" content="">
</head>
<body>
<div id="page">
<header class="header">
<div class="masthead">
<div class="masthead__inner-wrap">
<div class="masthead__menu">
<nav id="site-nav" class="greedy-nav">
<ul class="visible-links">
<li class="masthead__menu-item masthead__menu-item--lg">All American Muslim</li>
<li class="masthead__menu-item"><a href="/">Home</a></li>
<li class="masthead__menu-item"><a href="/dmca/">DMCA</a></li>
</ul>
<ul class="hidden-links hidden"></ul>
</nav>
</div>
</div>
</div>
</header>
<div id="main">
<div id="content">
<img src="https://4.bp.blogspot.com/-LPL8X1fVMYk/WP9VmfzBfQI/AAAAAAAACg8/pukmjrScphc6ddgStVQ4JUucXxUy6i3RQCLcB/s1600/happiness.jpg" class="page__hero-image">
<img src="https://3.bp.blogspot.com/-L3AfQN4vzAg/WLRlP6oltyI/AAAAAAAAAFE/XlELoixko1gDFvrT94imyPmFLpeoJ86GgCLcB/s1600/mahershala-ali-moonlight.jpg" class="page__hero-image">
<img src="https://1.bp.blogspot.com/-65XtUHAbYpg/WFfQCJi3iGI/AAAAAAAACQ8/R6ujufDeMXw31SV86ZpEptpab1rsZe8SACLcB/s1600/we-love-muslim-neighbors.jpeg" class="page__hero-image">
<img src="https://3.bp.blogspot.com/-O7jZc1ApwCs/WDy56Zi3ibI/AAAAAAAACL0/23zRJYhkIgwiRxh8NScFH1j2piimPHJrgCLcB/s1600/racistattack.jpg" class="page__hero-image">
<img src="https://2.bp.blogspot.com/-C09RulIlWCM/WKddLaC8OyI/AAAAAAAAACw/pEAH3yOC_HkF5gy1CNRYd3luqSFUiQM6gCLcB/s1600/santa-harmful-to-kids.jpg" class="page__hero-image">
</div>
</div>
</div>
</body>
</html> |
public/Windows 10 x64 (18363.778)/_WHEA_ERROR_TYPE.html | epikcraw/ggool | <html><body>
<h4>Windows 10 x64 (18363.778)</h4><br>
<h2>_WHEA_ERROR_TYPE</h2>
<font face="arial"> WheaErrTypeProcessor = 0n0<br>
WheaErrTypeMemory = 0n1<br>
WheaErrTypePCIExpress = 0n2<br>
WheaErrTypeNMI = 0n3<br>
WheaErrTypePCIXBus = 0n4<br>
WheaErrTypePCIXDevice = 0n5<br>
WheaErrTypeGeneric = 0n6<br>
WheaErrTypePmem = 0n7<br>
</font></body></html> |
themes/genius/docs/new-components/callout.html | davidchristie/kaenga-housing-calculator | <!--
* GenesisUI Bootstrap 4 Admin Template built as framework!
* Version 1.8.1
* https://GenesisUI.com
* Copyright 2017 creativeLabs Łukasz Holeczek
* License : https://GenesisUI.com/license.html
-->
<!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, shrink-to-fit=no">
<meta name="description" content="GenesisUI - UI Admin Kit Powered by Bootstrap 4">
<meta name="author" content="Lukasz Holeczek">
<meta name="keyword" content="GenesisUI - UI Admin Kit Powered by Bootstrap 4">
<!-- <link rel="shortcut icon" href="assets/ico/favicon.png"> -->
<title>GenesisUI - UI Admin Kit</title>
<!-- Icons -->
<link href="../css/font-awesome.min.css" rel="stylesheet">
<link href="../css/simple-line-icons.css" rel="stylesheet">
<!-- Main styles for this application -->
<link href="../css/style.css" rel="stylesheet">
<link href="../css/docs.min.css" rel="stylesheet">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-49801694-4', 'auto');
ga('send', 'pageview');
</script>
<style>
/* Youtube responsive video container */
.videoWrapper {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
padding-top: 25px;
height: 0;
}
.videoWrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
pre {
word-break: keep-all;
word-wrap: break-word;
white-space: pre;
white-space: -moz-pre-wrap;
white-space: pre-wrap;
white-space: pre\9; / IE7+ */
}
</style>
</head>
<body class="app header-fixed sidebar-fixed">
<header class="app-header navbar">
<button class="navbar-toggler mobile-sidebar-toggler hidden-lg-up" type="button">☰</button>
<a class="navbar-brand" href="#"></a>
<ul class="nav navbar-nav">
<li class="nav-item">
<a class="nav-link navbar-toggler sidebar-toggler" href="#">☰</a>
</li>
<li class="nav-item px-1">
<a class="nav-link" href="/index.html">Home</a>
</li>
</ul>
<ul class="nav navbar-nav ml-auto">
<li class="nav-item px-1">
<a class="nav-link" href="http://holeczek.pl" target="_blank">About me</a>
</li>
</ul>
</header>
<div class="app-body">
<div class="sidebar">
<nav class="sidebar-nav" id="docsNavbarContent">
<ul class="nav">
<li class="nav-item nav-dropdown ">
<!-- <div class="bd-toc-item "> -->
<a class="nav-link nav-dropdown-toggle" href="#"><i class="icon-star"></i>
Getting started
</a>
<ul class="nav-dropdown-items">
<li class="nav-item ">
<a class="nav-link" href="../getting-started/introduction.html">
Introduction
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../getting-started/components.html">
Components
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../getting-started/ajax-version.html">
AJAX Version
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../getting-started/static-version.html">
Static Version
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../getting-started/angularjs-version.html">
AngularJS Version
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../getting-started/angular2-version.html">
Angular2 Version
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../getting-started/react.js-version.html">
React.js Version
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../getting-started/vue.js-version.html">
Vue.js Version
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../getting-started/rtl-support.html">
RTL Support
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../getting-started/browsers-devices.html">
Browsers & devices
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../getting-started/options.html">
Options
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../getting-started/accessibility.html">
Accessibility
</a>
</li>
</ul>
</li>
<li class="nav-item nav-dropdown ">
<!-- <div class="bd-toc-item "> -->
<a class="nav-link nav-dropdown-toggle" href="#"><i class="icon-star"></i>
Layout
</a>
<ul class="nav-dropdown-items">
<li class="nav-item ">
<a class="nav-link" href="../layout/overview.html">
Overview
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../layout/grid.html">
Grid
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../layout/media-object.html">
Media object
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../layout/responsive-utilities.html">
Responsive utilities
</a>
</li>
</ul>
</li>
<li class="nav-item nav-dropdown ">
<!-- <div class="bd-toc-item "> -->
<a class="nav-link nav-dropdown-toggle" href="#"><i class="icon-star"></i>
Content
</a>
<ul class="nav-dropdown-items">
<li class="nav-item ">
<a class="nav-link" href="../content/reboot.html">
Reboot
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../content/typography.html">
Typography
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../content/code.html">
Code
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../content/images.html">
Images
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../content/tables.html">
Tables
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../content/figures.html">
Figures
</a>
</li>
</ul>
</li>
<li class="nav-item nav-dropdown active">
<!-- <div class="bd-toc-item "> -->
<a class="nav-link nav-dropdown-toggle" href="#"><i class="icon-star"></i>
Components
</a>
<ul class="nav-dropdown-items">
<li class="nav-item ">
<a class="nav-link" href="../components/alerts.html">
Alerts
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../components/badge.html">
Badge
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../components/breadcrumb.html">
Breadcrumb
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../components/buttons.html">
Buttons
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../components/button-group.html">
Button group
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../components/card.html">
Card
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../components/carousel.html">
Carousel
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../components/collapse.html">
Collapse
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../components/dropdowns.html">
Dropdowns
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../components/forms.html">
Forms
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../components/input-group.html">
Input group
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../components/list-group.html">
List group
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../components/modal.html">
Modal
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../components/navs.html">
Navs
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../components/navbar.html">
Navbar
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../components/pagination.html">
Pagination
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../components/popovers.html">
Popovers
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../components/progress.html">
Progress
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../components/scrollspy.html">
Scrollspy
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../components/tooltips.html">
Tooltips
</a>
</li>
</ul>
</li>
<li class="nav-item nav-dropdown ">
<!-- <div class="bd-toc-item "> -->
<a class="nav-link nav-dropdown-toggle" href="#"><i class="icon-star"></i>
Utilities
</a>
<ul class="nav-dropdown-items">
<li class="nav-item ">
<a class="nav-link" href="../utilities/borders.html">
Borders
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../utilities/clearfix.html">
Clearfix
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../utilities/close-icon.html">
Close icon
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../utilities/colors.html">
Colors
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../utilities/flexbox.html">
Flexbox
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../utilities/display-property.html">
Display property
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../utilities/image-replacement.html">
Image replacement
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../utilities/invisible-content.html">
Invisible content
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../utilities/position.html">
Position
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../utilities/responsive-helpers.html">
Responsive helpers
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../utilities/screenreaders.html">
Screenreaders
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../utilities/sizing.html">
Sizing
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../utilities/spacing.html">
Spacing
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../utilities/typography.html">
Typography
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../utilities/vertical-align.html">
Vertical align
</a>
</li>
</ul>
</li>
<li class="nav-item nav-dropdown active">
<!-- <div class="bd-toc-item "> -->
<a class="nav-link nav-dropdown-toggle" href="#"><i class="icon-star"></i>
New components
</a>
<ul class="nav-dropdown-items">
<li class="nav-item ">
<a class="nav-link" href="../new-components/breadcrumb-menu.html">
Breadcrumb menu
</a>
</li>
<li class="nav-item active bd-sidenav-active">
<a class="nav-link" href="../new-components/callout.html">
Callout
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../new-components/switches.html">
Switches
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../new-components/widgets.html">
Widgets
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="../new-components/utilities.html">
Utilities
</a>
</li>
</ul>
</li>
</ul>
</nav>
</div>
<!-- Main content -->
<main class="main">
<!-- Breadcrumb -->
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="../">Home</a></li>
<li class="breadcrumb-item">New components </li>
<li class="breadcrumb-item active">Callout</li>
</ol>
<div class="container-fluid">
<div class="animated fadeIn">
<div class="card">
<div class="card-header">
Callout
</div>
<div class="card-block">
<h2 id="contents">Contents</h2>
<ul id="markdown-toc">
<li><a href="#contents" id="markdown-toc-contents">Contents</a></li>
<li><a href="#without-borders" id="markdown-toc-without-borders">Without borders</a></li>
<li><a href="#with-borders" id="markdown-toc-with-borders">With borders</a></li>
</ul>
<h2 id="without-borders">Without borders</h2>
<div class="bd-example" data-example-id="">
<div class="row">
<div class="col-sm-2">
<div class="callout callout-info">
<small class="text-muted">New Clients</small><br />
<strong class="h4">9,123</strong>
</div>
</div><!--/.col-->
<div class="col-sm-2">
<div class="callout callout-danger">
<small class="text-muted">Recuring Clients</small><br />
<strong class="h4">22,643</strong>
</div>
</div><!--/.col-->
<div class="col-sm-2">
<div class="callout callout-warning">
<small class="text-muted">Pageviews</small><br />
<strong class="h4">78,623</strong>
</div>
</div><!--/.col-->
<div class="col-sm-2">
<div class="callout callout-success">
<small class="text-muted">Organic</small><br />
<strong class="h4">49,123</strong>
</div>
</div><!--/.col-->
<div class="col-sm-2">
<div class="callout">
<small class="text-muted">CTR</small><br />
<strong class="h4">23%</strong>
</div>
</div><!--/.col-->
<div class="col-sm-2">
<div class="callout callout-primary">
<small class="text-muted">Bounce Rate</small><br />
<strong class="h4">5%</strong>
</div>
</div><!--/.col-->
</div><!--/.row-->
</div>
<div class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt"><div</span> <span class="na">class=</span><span class="s">"row"</span><span class="nt">></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"col-sm-2"</span><span class="nt">></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"callout callout-info"</span><span class="nt">></span>
<span class="nt"><small</span> <span class="na">class=</span><span class="s">"text-muted"</span><span class="nt">></span>New Clients<span class="nt"></small><br></span>
<span class="nt"><strong</span> <span class="na">class=</span><span class="s">"h4"</span><span class="nt">></span>9,123<span class="nt"></strong></span>
<span class="nt"></div></span>
<span class="nt"></div></span><span class="c"><!--/.col--></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"col-sm-2"</span><span class="nt">></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"callout callout-danger"</span><span class="nt">></span>
<span class="nt"><small</span> <span class="na">class=</span><span class="s">"text-muted"</span><span class="nt">></span>Recuring Clients<span class="nt"></small><br></span>
<span class="nt"><strong</span> <span class="na">class=</span><span class="s">"h4"</span><span class="nt">></span>22,643<span class="nt"></strong></span>
<span class="nt"></div></span>
<span class="nt"></div></span><span class="c"><!--/.col--></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"col-sm-2"</span><span class="nt">></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"callout callout-warning"</span><span class="nt">></span>
<span class="nt"><small</span> <span class="na">class=</span><span class="s">"text-muted"</span><span class="nt">></span>Pageviews<span class="nt"></small><br></span>
<span class="nt"><strong</span> <span class="na">class=</span><span class="s">"h4"</span><span class="nt">></span>78,623<span class="nt"></strong></span>
<span class="nt"></div></span>
<span class="nt"></div></span><span class="c"><!--/.col--></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"col-sm-2"</span><span class="nt">></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"callout callout-success"</span><span class="nt">></span>
<span class="nt"><small</span> <span class="na">class=</span><span class="s">"text-muted"</span><span class="nt">></span>Organic<span class="nt"></small><br></span>
<span class="nt"><strong</span> <span class="na">class=</span><span class="s">"h4"</span><span class="nt">></span>49,123<span class="nt"></strong></span>
<span class="nt"></div></span>
<span class="nt"></div></span><span class="c"><!--/.col--></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"col-sm-2"</span><span class="nt">></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"callout"</span><span class="nt">></span>
<span class="nt"><small</span> <span class="na">class=</span><span class="s">"text-muted"</span><span class="nt">></span>CTR<span class="nt"></small><br></span>
<span class="nt"><strong</span> <span class="na">class=</span><span class="s">"h4"</span><span class="nt">></span>23%<span class="nt"></strong></span>
<span class="nt"></div></span>
<span class="nt"></div></span><span class="c"><!--/.col--></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"col-sm-2"</span><span class="nt">></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"callout callout-primary"</span><span class="nt">></span>
<span class="nt"><small</span> <span class="na">class=</span><span class="s">"text-muted"</span><span class="nt">></span>Bounce Rate<span class="nt"></small><br></span>
<span class="nt"><strong</span> <span class="na">class=</span><span class="s">"h4"</span><span class="nt">></span>5%<span class="nt"></strong></span>
<span class="nt"></div></span>
<span class="nt"></div></span><span class="c"><!--/.col--></span>
<span class="nt"></div></span><span class="c"><!--/.row--></span></code></pre></div>
<h2 id="with-borders">With borders</h2>
<div class="bd-example" data-example-id="">
<div class="row">
<div class="col-sm-2">
<div class="callout callout-info b-t-1 b-r-1 b-b-1 p-y-q">
<small class="text-muted">New Clients</small><br />
<strong class="h4">9,123</strong>
</div>
</div><!--/.col-->
<div class="col-sm-2">
<div class="callout callout-danger b-t-1 b-r-1 b-b-1 p-y-q">
<small class="text-muted">Recuring Clients</small><br />
<strong class="h4">22,643</strong>
</div>
</div><!--/.col-->
<div class="col-sm-2">
<div class="callout callout-warning b-t-1 b-r-1 b-b-1 p-y-q">
<small class="text-muted">Pageviews</small><br />
<strong class="h4">78,623</strong>
</div>
</div><!--/.col-->
<div class="col-sm-2">
<div class="callout callout-success b-t-1 b-r-1 b-b-1 p-y-q">
<small class="text-muted">Organic</small><br />
<strong class="h4">49,123</strong>
</div>
</div><!--/.col-->
<div class="col-sm-2">
<div class="callout b-t-1 b-r-1 b-b-1 p-y-q">
<small class="text-muted">CTR</small><br />
<strong class="h4">23%</strong>
</div>
</div><!--/.col-->
<div class="col-sm-2">
<div class="callout callout-primary b-t-1 b-r-1 b-b-1 p-y-q">
<small class="text-muted">Bounce Rate</small><br />
<strong class="h4">5%</strong>
</div>
</div><!--/.col-->
</div><!--/.row-->
</div>
<div class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt"><div</span> <span class="na">class=</span><span class="s">"row"</span><span class="nt">></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"col-sm-2"</span><span class="nt">></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"callout callout-info b-t-1 b-r-1 b-b-1 p-y-q"</span><span class="nt">></span>
<span class="nt"><small</span> <span class="na">class=</span><span class="s">"text-muted"</span><span class="nt">></span>New Clients<span class="nt"></small><br></span>
<span class="nt"><strong</span> <span class="na">class=</span><span class="s">"h4"</span><span class="nt">></span>9,123<span class="nt"></strong></span>
<span class="nt"></div></span>
<span class="nt"></div></span><span class="c"><!--/.col--></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"col-sm-2"</span><span class="nt">></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"callout callout-danger b-t-1 b-r-1 b-b-1 p-y-q"</span><span class="nt">></span>
<span class="nt"><small</span> <span class="na">class=</span><span class="s">"text-muted"</span><span class="nt">></span>Recuring Clients<span class="nt"></small><br></span>
<span class="nt"><strong</span> <span class="na">class=</span><span class="s">"h4"</span><span class="nt">></span>22,643<span class="nt"></strong></span>
<span class="nt"></div></span>
<span class="nt"></div></span><span class="c"><!--/.col--></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"col-sm-2"</span><span class="nt">></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"callout callout-warning b-t-1 b-r-1 b-b-1 p-y-q"</span><span class="nt">></span>
<span class="nt"><small</span> <span class="na">class=</span><span class="s">"text-muted"</span><span class="nt">></span>Pageviews<span class="nt"></small><br></span>
<span class="nt"><strong</span> <span class="na">class=</span><span class="s">"h4"</span><span class="nt">></span>78,623<span class="nt"></strong></span>
<span class="nt"></div></span>
<span class="nt"></div></span><span class="c"><!--/.col--></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"col-sm-2"</span><span class="nt">></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"callout callout-success b-t-1 b-r-1 b-b-1 p-y-q"</span><span class="nt">></span>
<span class="nt"><small</span> <span class="na">class=</span><span class="s">"text-muted"</span><span class="nt">></span>Organic<span class="nt"></small><br></span>
<span class="nt"><strong</span> <span class="na">class=</span><span class="s">"h4"</span><span class="nt">></span>49,123<span class="nt"></strong></span>
<span class="nt"></div></span>
<span class="nt"></div></span><span class="c"><!--/.col--></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"col-sm-2"</span><span class="nt">></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"callout b-t-1 b-r-1 b-b-1 p-y-q"</span><span class="nt">></span>
<span class="nt"><small</span> <span class="na">class=</span><span class="s">"text-muted"</span><span class="nt">></span>CTR<span class="nt"></small><br></span>
<span class="nt"><strong</span> <span class="na">class=</span><span class="s">"h4"</span><span class="nt">></span>23%<span class="nt"></strong></span>
<span class="nt"></div></span>
<span class="nt"></div></span><span class="c"><!--/.col--></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"col-sm-2"</span><span class="nt">></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"callout callout-primary b-t-1 b-r-1 b-b-1 p-y-q"</span><span class="nt">></span>
<span class="nt"><small</span> <span class="na">class=</span><span class="s">"text-muted"</span><span class="nt">></span>Bounce Rate<span class="nt"></small><br></span>
<span class="nt"><strong</span> <span class="na">class=</span><span class="s">"h4"</span><span class="nt">></span>5%<span class="nt"></strong></span>
<span class="nt"></div></span>
<span class="nt"></div></span><span class="c"><!--/.col--></span>
<span class="nt"></div></span><span class="c"><!--/.row--></span></code></pre></div>
</div>
</div>
</div>
</div>
<!-- /.conainer-fluid -->
</main>
</div>
<footer class="app-footer">
<span class="text-left">
<a href="https://genesisui.com">GenesisUI</a> © 2017 creativeLabs.
</span>
<span class="pull-right">
Powered by <a href="https://genesisui.com">GenesisUI</a>
</span>
</footer>
<!-- Bootstrap and necessary plugins -->
<script src="../js/libs/jquery.min.js"></script>
<script src="../js/libs/tether.min.js"></script>
<script src="../js/libs/bootstrap.min.js"></script>
<script src="../js/libs/pace.min.js"></script>
<script src="../js/docs.min.js"></script>
<!-- GenesisUI main scripts -->
<script src="../js/app.js"></script>
</body>
</html>
|
mobile_web/tests/index.html | nbannist/TaskAtHand | <!doctype html>
<html class="nui-theme-default">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task@Hand</title>
<!-- -->
<!--
nui theme; "nui": "nicholas" ui; I know...uninspired.
-->
<link rel="stylesheet" href="../styles/nui-theme-default.css">
<link rel="stylesheet" href="../styles/libs/font-awesome/css/font-awesome.min.css">
</head>
<body>
<!--
For the web version, the system should work without an internet connection
so you can get your idea down, then login and save it later, when you have time
to create an account / login.
-->
<div class="nui-panels">
</div>
<div class="nui-toolbar-top nui-toolbar">
<span id="breadcrumbs" class="nui-breadcrumbs"></span>
<ul class="nui-tools ">
<li class="nui-tool"></li>
<li class="nui-tool"></li>
<li class="nui-tool"></li>
</ul>
</div>
<div class="nui-toolbar-bottom nui-toolbar nui-new-notes-toolbar">
<div class=" nui-left">
</div>
<div class="nui-middle">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="80px" height="80px" class="new-note" id="new-item-button">
<g id="new-note-button">
<circle id="outer-circle" class="outer-circle" cx="" cy="" r=""></circle>
<circle id="inner-circle" class="inner-circle" cx="" cy="" r=""></circle>
<text family="font-awesome"
font-size="2em"
x="27"
y="51"
anchor="middle"
id="new-note-button-icon"
class="icon-edit" xlink:href="#inner-circle"></text>
<circle id="event-circle" class="event-circle event-catcher" cx="" cy="" r=""></circle>
</g>
</svg>
</div>
<div class="nui-right">
</div>
</div>
<!--
-->
<div id="wheel-veil" class="nui-model-window-background for-new-item-wheel"></div>
<div class="nui-wheel-container" id="new-item-wheel-panel">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="320px" height="320px" class="nui-wheel" id="new-item-wheel-container">
<g id="new-item-wheel">
<g id="buttons">
<path id="new-0" class="new-item-wheel-button wheel-item " d="M 0 0"></path>
<path id="new-1" class="new-item-wheel-button wheel-item " d="M 0 0"></path>
<path id="new-2" class="new-item-wheel-button wheel-item " d="M 0 0"></path>
<path id="new-3" class="new-item-wheel-button wheel-item " d="M 0 0"></path>
<path id="new-4" class="new-item-wheel-button wheel-item " d="M 0 0"></path>
<path id="new-5" class="new-item-wheel-button wheel-item " d="M 0 0"></path>
<path id="new-6" class="new-item-wheel-button wheel-item " d="M 0 0"></path>
<path id="new-7" class="new-item-wheel-button wheel-item " d="M 0 0"></path>
</g>
<g id="coloured-edges">
<path id="new-0-edge" class="new-item-wheel-edge button-edge" d="M 0 0"></path>
<path id="new-1-edge" class="new-item-wheel-edge button-edge" d="M 0 0"></path>
<path id="new-2-edge" class="new-item-wheel-edge button-edge" d="M 0 0"></path>
<path id="new-3-edge" class="new-item-wheel-edge button-edge" d="M 0 0"></path>
<path id="new-4-edge" class="new-item-wheel-edge button-edge" d="M 0 0"></path>
<path id="new-5-edge" class="new-item-wheel-edge button-edge" d="M 0 0"></path>
<path id="new-6-edge" class="new-item-wheel-edge button-edge" d="M 0 0"></path>
<path id="new-7-edge" class="new-item-wheel-edge button-edge" d="M 0 0"></path>
</g>
<!-- -->
<g id="button-icons">
<g id="icon-paths">
<path id="new-0-text"
class="new-item-wheel-text button-text"
d="M 0 0"></path>
<path id="new-1-text"
class="new-item-wheel-text button-text"
d="M 0 0"></path>
<path id="new-2-text"
class="new-item-wheel-text button-text"
d="M 0 0"></path>
<path id="new-3-text"
class="new-item-wheel-text button-text"
d="M 0 0"></path>
<path id="new-4-text"
class="new-item-wheel-text button-text"
d="M 0 0"></path>
<path id="new-5-text"
class="new-item-wheel-text button-text"
d="M 0 0"></path>
<path id="new-6-text"
class="new-item-wheel-text button-text"
d="M 0 0"></path>
<path id="new-7-text"
class="new-item-wheel-text button-text"
d="M 0 0"></path>
</g>
<text id="icons" family="font-awesome" font-size="24px">
<!-- Note -->
<textPath
anchor="middle" startoffset="20%"
class="button-text icon-edit" xlink:href="#new-0-text"></textPath>
<!-- List -->
<textPath
anchor="middle" startoffset="20%"
class="button-text icon-edit" xlink:href="#new-1-text"></textPath>
<!-- Camera -->
<textPath
anchor="middle" startoffset="20%"
class="button-text icon-edit" xlink:href="#new-2-text"></textPath>
<!-- Label/Tag -->
<textPath
anchor="middle" startoffset="20%"
class="button-text icon-edit" xlink:href="#new-3-text"></textPath>
<!-- Cogs/Idea? -->
<textPath
anchor="middle" startoffset="20%"
class="button-text icon-edit" xlink:href="#new-4-text"></textPath>
<!-- Bell/Alarm/Notification -->
<textPath
anchor="middle" startoffset="20%"
class="button-text icon-edit" xlink:href="#new-5-text"></textPath>
<!-- Audio/Microphone -->
<textPath
anchor="middle" startoffset="20%"
class="button-text icon-edit" xlink:href="#new-6-text"></textPath>
<!-- Unfilled/Ban/No Sign -->
<textPath
anchor="middle" startoffset="20%"
class="button-text icon-edit" xlink:href="#new-7-text"></textPath>
</text>
</g>
<!--
Okily. Because of the text on top of the visible buttons,
in order to detect when someone was over (and not over) a button,
I had to create these, to which I will have the actual mouse events connected.
-->
<g id="button-aliases">
<path data-alias-of="new-0" id="new-0-alias" class="new-item-wheel-button wheel-item-alias " d="M 0 0"></path>
<path data-alias-of="new-1" id="new-1-alias" class="new-item-wheel-button wheel-item-alias " d="M 0 0"></path>
<path data-alias-of="new-2" id="new-2-alias" class="new-item-wheel-button wheel-item-alias " d="M 0 0"></path>
<path data-alias-of="new-3" id="new-3-alias" class="new-item-wheel-button wheel-item-alias " d="M 0 0"></path>
<path data-alias-of="new-4" id="new-4-alias" class="new-item-wheel-button wheel-item-alias " d="M 0 0"></path>
<path data-alias-of="new-5" id="new-5-alias" class="new-item-wheel-button wheel-item-alias " d="M 0 0"></path>
<path data-alias-of="new-6" id="new-6-alias" class="new-item-wheel-button wheel-item-alias " d="M 0 0"></path>
<path data-alias-of="new-7" id="new-7-alias" class="new-item-wheel-button wheel-item-alias " d="M 0 0"></path>
</g>
<circle id="center-button" class="new-item-wheel-button center-item " cx="" cy="" r="">
</circle>
<text family="font-awesome"
font-size="3em"
x="140"
y="177"
anchor="middle"
class="middle-button-text icon-edit" xlink:href="#center-button"></text>
<circle id="center-event-button" class="new-item-wheel-button center-item event-catcher" cx="" cy="" r="">
</circle>
</g>
</svg>
<!--
-->
</div> <!-- wheel container -->
<!--
-->
<div id="veil" class="nui-model-window-background"></div>
<!--
-->
<script src="../../../cragnon/js/cragnon/cragnon.js"></script>
<script src="../../../cragnon/js/cragnon/cragnon.predicates.js"></script>
<script src="../../../cragnon/js/cragnon/cragnon.extend.js"></script>
<script src="../../../cragnon/js/cragnon/cragnon.copy.js"></script>
<script src="../../../cragnon/js/cragnon/cragnon.gettype.js"></script>
<script src="../../../cragnon/js/cragnon/cragnon.isequal.js"></script>
<script>
var calcDonutPieces = function (settings, data) {
"use strict";
var defaults = {
center: {x:320, y:320}, // [cx, cy]
radii: [50, 150], // inner outer radii; smaller is inner;
pieces: [45, 45, 45, 45, 45, 45, 45, 45],
// angle of zero (0) or 360deg is along the horizontal (x-axis).
// to convert to y-axis (vertical/12 o'clock)
// subract 90 from 360
// for additional offset subract from result
offset: 360 - 90 - 22.5,
},
options = (settings === undefined)? defaults : settings, // all or nothing
// the return value
donutPiece = "",
edgePiece = "",
textPiece = "",
// the pointIndex
pointIndex = 0,
allPoints = data || {inner: [], outer: [], middle: []},
innerRadius = (options.radii[0] < options.radii[1])? options.radii[0] : options.radii[1],
outerRadius = (options.radii[0] > options.radii[1])? options.radii[0] : options.radii[1],
middleRadius = 0,
donutPieces = {
'buttons': [],
'edges': [],
'text': [],
},
angle = 0;
if (innerRadius === outerRadius) {
console.log('Dude, wtf? Radii can\'t be equal.');
return null;
}
// 33% of the difference
middleRadius = (innerRadius + ((outerRadius - innerRadius) * .33));
// Point 1 and Point 2 use larger radius.
angle = angle + options.offset;
for (pointIndex = 0; pointIndex < options.pieces.length; pointIndex++) {
// Outer Radius
allPoints.outer[pointIndex] = polar2Cartesian(options.center,
outerRadius, angle);
// Text/Middle
allPoints.middle[pointIndex] = polar2Cartesian(options.center,
middleRadius, angle);
// Inner Radius
allPoints.inner[pointIndex] = polar2Cartesian(options.center,
innerRadius, angle);
angle = angle + options.pieces[pointIndex]; // calc angle offset
}
// Calculate Point 1 and Point 2
// SVG Command: Move To: Point 1
// Draw Arc ending at Point 2
// Point 3 and Point 4 use smaller radius
// Calculate Point 3 and Point 4
// Draw Line to Point 3
// Draw Arc to Point 4
// Draw Line to Point 1
for (pointIndex = 0; pointIndex < options.pieces.length; pointIndex++) {
donutPiece = '';
edgePiece = '';
textPiece = '';
if (pointIndex === options.pieces.length-1) {
// Move to start of next donut.
// the right side is actually the first donut piece
donutPiece += ' M ' + allPoints.outer[pointIndex].x + ' ' +
allPoints.outer[pointIndex].y;
donutPiece += ' A ' + outerRadius + ' ' + outerRadius + ' 0 0 1 ' +
allPoints.outer[0].x + ' ' +
allPoints.outer[0].y + '';
// EDGE is the same as the outer arc
edgePiece += ' M ' + allPoints.outer[pointIndex].x + ' ' +
allPoints.outer[pointIndex].y;
edgePiece += ' A ' + outerRadius + ' ' + outerRadius + ' 0 0 1 ' +
allPoints.outer[0].x + ' ' +
allPoints.outer[0].y + '';
// Text same as outer only uses middle instead of outer
textPiece += ' M ' +
allPoints.middle[pointIndex].x + ' ' +
allPoints.middle[pointIndex].y;
textPiece += ' L ' +
allPoints.middle[0].x + ' ' +
allPoints.middle[0].y + '';
/* textPiece += ' A ' +
middleRadius + ' ' +
middleRadius +
' 0 0 1 ' +
allPoints.middle[0].x + ' ' +
allPoints.middle[0].y + '';
*/
// Line to inner arc
donutPiece += ' L ' + allPoints.inner[0].x + ' ' +
allPoints.inner[0].y + '';
// We're drawing clockwise so this arc line starts on the "right" and goes "left"
donutPiece += ' A ' + innerRadius + ' ' +
innerRadius + ' 0 0 0 ' + allPoints.inner[pointIndex].x + ' ' +
allPoints.inner[pointIndex].y + '';
// Line back to the beginning
//donutPiece += ' L ' + allPoints.inner[pointIndex].x + ' ' +
// allPoints.inner[pointIndex].y + '';
donutPiece += ' Z';
}
else {
// Move to
donutPiece += ' M ' + allPoints.outer[pointIndex].x + ' ' + allPoints.outer[pointIndex].y;
// Outer Arc
donutPiece += ' A ' + outerRadius + ' ' + outerRadius + ' 0 0 1 ' +
allPoints.outer[pointIndex+1].x + ' ' +
allPoints.outer[pointIndex+1].y + '';
// EDGE is the same as the outer arc
edgePiece += ' M ' + allPoints.outer[pointIndex].x + ' ' + allPoints.outer[pointIndex].y;
edgePiece += ' A ' + outerRadius + ' ' + outerRadius + ' 0 0 1 ' +
allPoints.outer[pointIndex+1].x + ' ' +
allPoints.outer[pointIndex+1].y + '';
// MIDDLE/TEXT Arc
textPiece += ' M ' + allPoints.middle[pointIndex].x + ' ' + allPoints.middle[pointIndex].y;
textPiece += ' L ' +
allPoints.middle[pointIndex+1].x + ' ' +
allPoints.middle[pointIndex+1].y + '';
/*
textPiece += ' A ' + middleRadius + ' ' + middleRadius + ' 0 0 1 ' +
allPoints.middle[pointIndex+1].x + ' ' +
allPoints.middle[pointIndex+1].y + '';
*/
// Line to inner arc (right side)
donutPiece += ' L ' + allPoints.inner[pointIndex+1].x + ' ' +
allPoints.inner[pointIndex+1].y + '';
// We're drawing clockwise so this arc line starts on the "right" and goes "left"
// donutPiece += ' L ' + allPoints.inner[pointIndex+1].x + ' ' +
// allPoints.outer[pointIndex+1].y + '';
donutPiece += ' A ' + innerRadius + ' ' +
innerRadius + ' 0 0 0 ' +
allPoints.inner[pointIndex].x + ' ' +
allPoints.inner[pointIndex].y + '';
// Line back to the beginning
// donutPiece += ' L ' + allPoints.inner[pointIndex].x + ' ' +
// allPoints.inner[pointIndex].y + '';
donutPiece += ' Z';
}
donutPieces['buttons'][pointIndex] = '' + donutPiece + '';
donutPieces['edges'][pointIndex] = '' + edgePiece + '';
donutPieces['text'][pointIndex] = '' + textPiece + '';
}
// original code:
// http://stackoverflow.com/questions/5736398/how-to-calculate-the-svg-path-for-an-arc-of-a-circle
//
function polar2Cartesian(c, r, ad) {
"use strict";
var ar = ad * Math.PI / 180.0, // calc angle in radians from the angle in degrees, and PI
x = c.x + r * Math.cos(ar), // calc x using the x of the center (cx),
// radius (r) and the angle in radians (ar).
y = c.y + r * Math.sin(ar); // calc y using the y of the center (cy),
// radius (r) and the angle in radians (ar).
// console.dir(c);
// console.log('cx: ' + c.x);
// console.log('cy: ' + c.y);
// console.log('r: ' + r);
// console.log('ad: ' + ad);
// console.log('ar: ' + ar);
// Return a point array with x,y
return {'x': x, 'y': y};
}
return donutPieces;
};
var makeDonutPieces = function (settings, buttons, edges, text) {
"use strict";
var defaults = {
'container': '#new-item-wheel',
'classes': [],
'ids': [],
},
options = (settings === undefined)? defaults : settings,
index = 0,
timeoutID;
//console.log('data.length: ' + buttons.length);
// inject
function delayedRender(options, buttons, edges, text) {
//
injectPathData(options.ids[index], buttons[index]);
//
injectPathData(options.ids[index] + '-alias', buttons[index]);
//
injectPathData(options.ids[index] + '-edge', edges[index]);
//
injectPathData(options.ids[index] + '-text', text[index]);
index++;
if (index >= buttons.length) {
clearInterval(timeoutID);
}
}
timeoutID = window.setInterval(delayedRender, 25, options, buttons, edges, text);
// id is the id of the element we are injecting into,
// data is the SVG Path Data we are injecting
function injectPathData(id, data) {
"use strict";
var query = document.querySelectorAll('#' + id),
path,
attrs, // array of attribute objects
attr, // a single attribute object
aIndex = 0;
//console.log('#' + id);
//console.dir(query);
// only care if the query found something
if (query.length > 0) {
path = query[0];
//console.dir(path);
// now, let's look for the 'd' attribute
attrs = path.attributes;
//console.log(attrs);
//console.log(attrs.length);
for (aIndex = 0; aIndex < attrs.length; aIndex++) {
// alias
attr = attrs[aIndex];
//console.log('attr: ' + attr.name);
if (attr.name === 'd') {
// inject data
//console.log('inject data');
attr.value = data;
// return true so we know it worked.
return true;
}
}
}
// indicates data injection didn't take place
return false;
}
// just makes a path element in the given svg parent
// 'parent' selector assumes you are naming the svg element
function injectNewPath(parent, id, classes) {
var query = document.querySelectorAll(parent + ' g'),
g, // the svg container
path;
g = query[0]; // should only be one; use first one no matter what
path = document.createElement('path');
path.setAttribute('id', id);
path.setAttribute('class', classes);
path.setAttribute('d', 'M 0 0');
//
g.appendChild(path);
}
};
var makeMiddleButton = function (cx, cy, r) {
var visibleButtonID = 'center-button',
eventButtonID = 'center-event-button',
queries = [
document.querySelectorAll('#' + visibleButtonID),
document.querySelectorAll('#' + eventButtonID)],
path,
attrCounter = 0,
attrs,
attr,
aIndex = 0,
qIndex = 0;
for (qIndex = 0; qIndex < queries.length; qIndex++) {
if (queries[qIndex].length > 0) {
path = queries[qIndex][0];
//console.dir(path);
// now, let's look for the 'd' attribute
attrs = path.attributes;
//console.log(attrs);
//console.log(attrs.length);
for (aIndex = 0; aIndex < attrs.length; aIndex++) {
// alias
attr = attrs[aIndex];
//console.log('attr: ' + attr.name);
if (attr.name === 'cx') {
// inject data
attr.value = cx;
attrCounter++;
if (attrCounter === 3) {
break;
}
// return true so we know it worked.
}
else if (attr.name === 'cy') {
// inject data
attr.value = cy;
attrCounter++;
if (attrCounter === 3) {
break;
}
}
else if (attr.name === 'r') {
// inject data
attr.value = r;
attrCounter++;
if (attrCounter === 3) {
break;
}
}
}
}
}
};
</script>
<script>
window.onload = function () {
var centerPoint = {x:160, y:160};
var data = calcDonutPieces({
center: centerPoint, // [cx, cy]
radii: [50, 150], // inner outer radii; smaller is inner;
pieces: [45, 45, 45, 45, 45, 45, 45, 45],
// angle of zero (0) or 360deg is along the horizontal (x-axis).
// to convert to y-axis (vertical/12 o'clock)
// subract 90 from 360
// for additional offset subract from result
offset: 360 - 90 - 22.5,
});
makeDonutPieces(
{
'container': '#new-item-wheel',
'classes': [
'wheel-item ',
'wheel-item ',
'wheel-item ',
'wheel-item ',
'wheel-item ',
'wheel-item ',
'wheel-item ',
'wheel-item ',
],
'ids': [
'new-0',
'new-1',
'new-2',
'new-3',
'new-4',
'new-5',
'new-6',
'new-7',
],
},
data.buttons,
data.edges,
data.text
);
makeMiddleButton(centerPoint.x, centerPoint.y, 50);
ghostHover();
makeNewNoteButton();
hideNewNoteWheel();
};
function ghostHover() {
var elementPattern = '.wheel-item-alias',
query = document.querySelectorAll(elementPattern),
item = null,
eIndex = 0,
cIndex = 0;
for (eIndex = 0; eIndex < query.length; eIndex++) {
item = query[eIndex];
item.onmouseover = function (e) {
var aliasOf = this.getAttribute('data-alias-of'),
alias = document.querySelectorAll('#' + aliasOf)[0],
edge = document.querySelectorAll('#' + aliasOf + '-edge')[0];
this.classList.add("hover");
alias.classList.add("hover");
edge.classList.add("hover");
e.stopPropagation(); // W3C
};
item.onmouseout = function (e) {
var aliasOf = this.getAttribute('data-alias-of'),
alias = document.querySelectorAll('#' + aliasOf)[0],
edge = document.querySelectorAll('#' + aliasOf + '-edge')[0];
this.classList.remove("hover");
alias.classList.remove("hover");
edge.classList.remove("hover");
e.stopPropagation(); // W3C
};
// Not Chrome Compatible; does not bubble
item.onmouseleave = function (e) {
console.log('mouse leave');
console.dir(this);
};
// Not Chrome Compatible; does not bubble
item.onmouseenter = function (e) {
console.log('mouse enter');
console.dir(this);
};
}
}
function newNoteHover() {
var elementPattern = '#event-circle',
query = document.querySelectorAll(elementPattern),
item = null,
eIndex = 0,
cIndex = 0;
for (eIndex = 0; eIndex < query.length; eIndex++) {
item = query[eIndex];
item.onmouseover = function (e) {
var aliasOf = this.getAttribute('data-alias-of'),
alias = document.querySelectorAll('#' + aliasOf)[0],
edge = document.querySelectorAll('#' + aliasOf + '-edge')[0];
this.classList.add("hover");
alias.classList.add("hover");
edge.classList.add("hover");
e.stopPropagation(); // W3C
};
item.onmouseout = function (e) {
var aliasOf = this.getAttribute('data-alias-of'),
alias = document.querySelectorAll('#' + aliasOf)[0],
edge = document.querySelectorAll('#' + aliasOf + '-edge')[0];
this.classList.remove("hover");
alias.classList.remove("hover");
edge.classList.remove("hover");
e.stopPropagation(); // W3C
};
// Not Chrome Compatible
item.onmouseleave = function (e) {
console.log('mouse leave');
console.dir(this);
};
// Not Chrome Compatible
item.onmouseenter = function (e) {
console.log('mouse enter');
console.dir(this);
};
}
}
function showNewNoteWheel() {
var bSelector = '#center-event-button',
bQuery = document.querySelectorAll(bSelector),
bElement = bQuery[0],
//
wSelector = '.wheel-item',
wQuery = document.querySelectorAll(wSelector),
wIndex = 0,
//
tSelector = '#icons .button-text',
tQuery = document.querySelectorAll(tSelector),
//
pSelector = '#icon-paths .button-text',
pQuery = document.querySelectorAll(tSelector),
//
aSelector = '.wheel-item-alias',
aQuery = document.querySelectorAll(aSelector),
//
eSelector = '.button-edge',
eQuery = document.querySelectorAll(eSelector),
//
newNoteWheelHousing = document.querySelectorAll('#new-item-wheel-container')[0],
newItemWheelPanel = document.querySelectorAll('#new-item-wheel-panel')[0],
//
newNoteWheel = document.querySelectorAll('#new-item-wheel')[0],
veil = document.querySelectorAll('#wheel-veil')[0],
//
timeout;
if (newNoteWheelHousing.style.display === 'block') {
return hideNewNoteWheel();
}
newItemWheelPanel.style.display = 'block';
newNoteWheelHousing.style.display = 'block';
newNoteWheel.style.display = 'block';
bElement.style.display = 'block';
veil.style.display = 'block';
timeout = window.setInterval(showElements, 25, wQuery, aQuery, eQuery, pQuery, tQuery, bQuery);
function showElements(elements, aliases, edges, textPaths, text, centerButton) {
var icon;
// not even sure this works on SVG elements :)
elements[wIndex].style.display = 'block';
aliases[wIndex].style.display = 'block';
edges[wIndex].style.display = 'block';
textPaths[wIndex].style.display = 'block';
text[wIndex].style.display = 'block';
wIndex++;
if (wIndex === elements.length) {
window.clearInterval(timeout);
icon = document.querySelectorAll('#new-note-button-icon')[0];
icon.childNodes[0].data = '\uF056'; // minus
}
}
}
function hideNewNoteWheel() {
var bSelector = '#center-event-button',
bQuery = document.querySelectorAll(bSelector),
bElement = bQuery[0],
wSelector = '.wheel-item',
wQuery = document.querySelectorAll(wSelector),
wIndex = wQuery.length-1,
tSelector = '#icons .button-text',
tQuery = document.querySelectorAll(tSelector),
//
pSelector = '#icon-paths .button-text',
pQuery = document.querySelectorAll(tSelector),
//
aSelector = '.wheel-item-alias',
aQuery = document.querySelectorAll(aSelector),
//
eSelector = '.button-edge',
eQuery = document.querySelectorAll(eSelector),
//
timeout;
timeout = window.setInterval(hideElements, 25, wQuery, aQuery, eQuery, pQuery, tQuery, bQuery);
function hideElements(elements, aliases, edges, textPaths, text, centerButton) {
var icon,
veil,
newItemWheelPanel,
newItemWheelContainer,
newItemWheel;
// display : none; even works on SVG elements!
elements[wIndex].style.display = 'none';
aliases[wIndex].style.display = 'none';
edges[wIndex].style.display = 'none';
textPaths[wIndex].style.display = 'none';
text[wIndex].style.display = 'none';
wIndex--;
if (wIndex === -1) {
window.clearInterval(timeout);
icon = document.querySelectorAll('#new-note-button-icon')[0];
veil = document.querySelectorAll('#wheel-veil')[0];
newItemWheelPanel = document.querySelectorAll('#new-item-wheel-panel')[0];
newItemWheelContainer = document.querySelectorAll('#new-item-wheel-container')[0];
newItemWheel = document.querySelectorAll('#new-item-wheel')[0];
bQuery[0].style.display = 'none';
newItemWheelContainer.style.display = 'none';
newItemWheel.style.display = 'none';
veil.style.display = 'none';
icon.childNodes[0].data = '\uF055'; // plus
}
}
}
function makeNewNoteButton() {
"use strict";
var smallCircle = document.querySelectorAll('#inner-circle')[0],
bigCircle = document.querySelectorAll('#outer-circle')[0],
eventCircle = document.querySelectorAll('#event-circle')[0],
circles = [smallCircle, bigCircle, eventCircle],
radii = [25, 35, 40],
circle,
i = 0,
attrs,
attr,
attrCounter = 0,
aIndex = 0,
cx = 40,
cy = 40,
r = 0,
index = 0;
for (i = 0; i < circles.length; i = i+1) {
//
circle = circles[i];
attrs = circle.attributes;
attrCounter = 0;
for (aIndex = 0; aIndex < attrs.length; aIndex++) {
//
attr = attrs[aIndex];
if (attr.name === 'cx') {
// inject data
attr.value = cx;
attrCounter++;
if (attrCounter === 3) {
break;
}
// return true so we know it worked.
}
else if (attr.name === 'cy') {
// inject data
attr.value = cy;
attrCounter++;
if (attrCounter === 3) {
break;
}
}
else if (attr.name === 'r') {
// inject data
r = radii[i];
attr.value = r;
attrCounter++;
if (attrCounter === 3) {
break;
}
}
}
}
}
//
var showNewNoteWheel_btn = document.querySelectorAll('#event-circle')[0];
showNewNoteWheel_btn.onclick = function (e) {
showNewNoteWheel();
};
showNewNoteWheel_btn.onmouseover = function (e) {
var circles = document.querySelectorAll('#new-note-button circle'),
circle,
cIndex = 0;
for (cIndex = 0; cIndex < circles.length; cIndex++) {
circle = circles[cIndex];
circle.classList.add('hover');
}
e.stopPropagation();
};
showNewNoteWheel_btn.onmouseout = function (e) {
var circles = document.querySelectorAll('#new-note-button circle'),
circle,
cIndex = 0;
for (cIndex = 0; cIndex < circles.length; cIndex++) {
circle = circles[cIndex];
circle.classList.remove('hover');
}
e.stopPropagation();
};
//
var hideNewNoteWheel_btn = document.querySelectorAll('#center-event-button')[0];
hideNewNoteWheel_btn.onclick = function (e) {
hideNewNoteWheel();
};
hideNewNoteWheel_btn.onmouseover = function (e) {
var buttons = document.querySelectorAll('#center-button'),
button,
bIndex = 0;
for (bIndex = 0; bIndex < buttons.length; bIndex++) {
button = buttons[bIndex];
button.classList.add('hover');
}
e.stopPropagation();
};
hideNewNoteWheel_btn.onmouseout = function (e) {
var buttons = document.querySelectorAll('#center-button'),
button,
bIndex = 0;
for (bIndex = 0; bIndex < buttons.length; bIndex++) {
button = buttons[bIndex];
button.classList.remove('hover');
}
e.stopPropagation();
};
/*
var icon = document.querySelectorAll('#new-note-button-icon')[0];
console.dir(icon.childNodes[0].data);
icon.childNodes[0].data = '\uF056'; // minus
icon.childNodes[0].data = '\uF055'; // plus
console.log(icon.textContent);
*/
</script>
<script>
(function (window, document, undefined) {
var minWheelDiameter = 200;
/*
if the "height" (shortest one between actual width and height)
is less than 200px + (top toolbar) + (bottom toolbar) +
(vertical margins | padding)
then the diameter of the wheel should be ~98% of the height;
only add on toolbars if it is the actual height
smallest the diameter should be is 200px;
limit on how large it can get?
*/
function getWindowHeight() {
return getWindowWidthHeight("height");
}
function getWindowWidth() {
return getWindowWidthHeight("width");
}
function getWindowWidthHeight(direction) {
var height = window.innerHeight,
width = window.innerWidth;
/*
var height = window.outerHeight,
width = window.outerWidth;
*/
// width is the short of the two
// height is the taller of the two
if (direction === 'height') {
return (height >= width)? height : width;
}
else if (direction === 'width') {
return (height >= width)? width : height;
}
}
function calcVMargin() {
}
function calculateWheelSize() {
var minDiameter = 200,
shortways = getWindowWidth('width'),
toolbars = 80,
spacing = 10,
minSpaceNeeded = (minDiameter + (toolbars * 2) + (spacing * 2));
if (minSpaceNeeded < shortways) {
console.log('max: ' + minSpaceNeeded + ': ' + shortways);
return (shortways - (toolbars * 2) - (spacing * 2));
}
else if (minSpaceNeeded >= shortways) {
console.log('min');
return minDiameter;
}
}
function verticallyCenterWheel() {
var wheel = document.querySelectorAll('#new-item-wheel-panel')[0];
console.log('Height: ' + getWindowHeight());
console.log('Width: ' + getWindowWidth());
}
console.log(calculateWheelSize());
/*
height is always >= width
get window width px;
find ~98% of width in px;
get window height px;
vMargin = window height - 98% of width / 2;
*/
} (window, document));
</script>
</body>
</html> |
index.html | panzj/pinyin | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>拼音</title>
<meta name="description" content="">
<meta name="keywords" content="">
<link href="" rel="stylesheet">
</head>
<body>
<p>给喜爱唉挨中国小狗收藏贴#@$aAbzdEFKP9:00 -18:00</p>
<div id="contacts"></div>
<script id="template" type="text/html">
<dl>
{{each list as group i}}
<dt>{{i}}</dt>
{{each group as contact i}}
<dd>姓名:{{contact.name}};手机:{{contact.phone}}</dd>
{{/each}}
{{/each}}
</dl>
</script>
<script src="pinyin.js"></script>
<script src="template.js"></script>
<script>
var contacts = [
{'name':'比克','phone':'13757113126'},
{'name':'毕福剑','phone':'13757113127'},
{'name':'李丽华','phone':'13757113116'},
{'name':'荆轲','phone':'12345678922'},
{'name':'何冰','phone':'12345678923'},
{'name':'邵云','phone':'13758112880'},
{'name':'shaoyun','phone':'13758112880'},
{'name':'liyunhua','phone':'13758112880'},
{'name':'太白','phone':'13588494123'},
{'name':'童林','phone':'13656684279'},
{'name':'玄清','phone':'18267126678'},
{'name':'天樵','phone':'13656645099'},
{'name':'天意','phone':'12345678921'},
{'name':'574','phone':'12345678921'},
{'name':'#456','phone':'12345678921'},
{'name':'zy','phone':'12345668921'},
{'name':'阿姨','phone':'13757114126'}
];
var str = document.getElementsByTagName('p')[0].innerText;
var pinyin = new Pinyin();
document.write('中文全拼:'+ pinyin.getChar(str) +'<br>');
document.write(' 首字母:'+ pinyin.getCamelChars(str)[0] +'<br>');
document.write('中文拼音:'+ pinyin.getFullChars(str) +'<br>');
document.write('中文排序:'+ pinyin.pinyinSort(str.split('')).join('') +'<br>');
//两端去空格函数
String.prototype.trim = function() {
return this.replace(/(^\s*)|(\s*$)/g, "");
}
function sort(arr){
return arr.sort(function(a, b){
var rValue = 0;
var pinA = pinyin.getChar(a.name)[0];
var pinB = pinyin.getChar(b.name)[0];
// return pinA > pinB ? 1 : pinA < pinB ? -1 : 0;
if(pinA.toLocaleLowerCase() > pinB.toLocaleLowerCase()){
rValue = 1;
} else if(pinA.toLocaleLowerCase() < pinB.toLocaleLowerCase()){
rValue = -1;
} else{
// 相同的首拼音
// rValue = pinA > pinB ? 1 : pinA < pinB ? -1 : 0;
// rValue = a.name > b.name ? 1 : a.name < b.name ? -1 : 0;
rValue = a.name.localeCompare(b.name);
}
return rValue;
});
}
function grouping(contacts){
var arr = {};
for (var i = 0; i < contacts.length; i++) {
var pin = pinyin.getChar(contacts[i].name)[0].toLocaleUpperCase();
if (pin.charCodeAt() < 65 || pin.charCodeAt() > 90) {
pin = '#';
};
if (!arr[pin]) {
arr[pin] = [];
}
arr[pin].push(contacts[i]);
}
return arr;
}
contacts = sort(contacts);
var group = grouping(contacts);
var data = {list: group};
var html = template('template', data);
document.getElementById('contacts').innerHTML = html;
</script>
</body>
</html>
|
lib/pmd-bin-5.0.4/docs/testapidocs/net/sourceforge/pmd/lang/xsl/rule/xpath/package-summary.html | jmagas/RedditDailyProgrammer | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (version 1.7.0_03) on Wed May 01 12:49:41 CEST 2013 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>net.sourceforge.pmd.lang.xsl.rule.xpath (PMD 5.0.4 Test API)</title>
<meta name="date" content="2013-05-01">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="net.sourceforge.pmd.lang.xsl.rule.xpath (PMD 5.0.4 Test API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../../net/sourceforge/pmd/lang/xml/rule/basic/package-summary.html">Prev Package</a></li>
<li><a href="../../../../../../../net/sourceforge/pmd/properties/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?net/sourceforge/pmd/lang/xsl/rule/xpath/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Package" class="title">Package net.sourceforge.pmd.lang.xsl.rule.xpath</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
<caption><span>Class Summary</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Class</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../../../../../../net/sourceforge/pmd/lang/xsl/rule/xpath/XPathRulesTest.html" title="class in net.sourceforge.pmd.lang.xsl.rule.xpath">XPathRulesTest</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../../net/sourceforge/pmd/lang/xml/rule/basic/package-summary.html">Prev Package</a></li>
<li><a href="../../../../../../../net/sourceforge/pmd/properties/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?net/sourceforge/pmd/lang/xsl/rule/xpath/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2002-2013 <a href="http://pmd.sourceforge.net/">InfoEther</a>. All Rights Reserved.</small></p>
</body>
</html>
|
example/full/dist/css/home.css | SporeUI/spore-mock | .container{
margin: 10px auto;
color: #fff;
}
.list .name{
color: #f5bb5a;
}
.list .name::after{
content: ':';
}
.list .value{
color: #9afb7e;
margin-left: 10px;
}
.btn{
margin: 10px auto;
} |
HTML5 Tutorials/Tutorial3 - Atrributes&links/firstpage.html | DrapsTV/DrapsTV_Materials | <!DOCTYPE html>
<html lang="en-US">
<body>
<h1 title="This is a heading">This is my heading</h1>
<h2>This is a smaller heading</h2>
hello welcome to my webpage.
This second line will be attached to the first line.
<p title="This is a paragraph">This is a paragraph.</p>
<p>This is also a paragraph.</p>
<p>
<a href="http://www.google.com" target="_blank"> To Google! </a>
</p>
<a href="secondpage.html"> Next Page </a>
</body>
</html> |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.