csswg/css3-regions alternate-spec-style.css,NONE,1.1 style-toggle.js,NONE,1.1 Overview.html,1.1,1.2 Overview.src.html,1.1,1.2

Update of /sources/public/csswg/css3-regions
In directory hutz:/tmp/cvs-serv12981

Modified Files:
	Overview.html Overview.src.html 
Added Files:
	alternate-spec-style.css style-toggle.js 
Log Message:
CSS Regions now only covers regions, flows, region breaks and region styling. Exclusions have been moved to the css-exclusions module and slots are not covered in this effort

--- NEW FILE: style-toggle.js ---
(function() {

    var defaultStyleText = 'default spec. style';
    var additionalStyleText = "additional spec. style";
    var toggle;


    function toggleStyle() {
        var st = document.getElementById('st');

        if (st.disabled === true) {
            st.disabled = false;
            toggle.textContent = defaultStyleText;
        } else {
            st.disabled = true;
            toggle.textContent = additionalStyleText;
        }
    }

    window.onload = function() {
        var divHead = document.getElementById('div-head');
        toggle = document.createElement('a');

		divHead.insertBefore(toggle, divHead.firstChild);
        toggle.textContent = defaultStyleText;
        toggle.setAttribute('class', 'toggle');
        toggle.setAttribute('href', '#');
        toggle.addEventListener("DOMActivate", toggleStyle, false);
    };
})();


Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-regions/Overview.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- Overview.html	27 Apr 2011 18:47:31 -0000	1.1
+++ Overview.html	4 May 2011 05:32:27 -0000	1.2
@@ -4,33 +4,36 @@
 <html dir=ltr lang=en>
  <head profile="http://www.w3.org/2006/03/hcard"><meta content="IE=edge"
   http-equiv=X-UA-Compatible>
-  <meta content="text/html; charset=UTF-8" http-equiv=Content-Type>
+  <meta content="text/html; charset=utf-8" http-equiv=Content-Type>
 
   <title>CSS Regions Module</title>
   <link href="http://dev.w3.org/csswg/default.css" rel=stylesheet
   type="text/css">
   <link href="http://www.w3.org/StyleSheets/TR/W3C-ED.css" rel=Stylesheet
   type="text/css">
[...3674 lines suppressed...]
-
-     <td>length
-
-     <td>0
-
-     <td>any block element
+     <td>any element
 
      <td>no
 
@@ -2716,8 +1893,7 @@
      <td>visual
   </table>
   <!--end-properties-->
-</html>
-<!-- Keep this comment at the end of the file
+  <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml
 sgml-declaration:"~/SGML/HTML4.decl"

--- NEW FILE: alternate-spec-style.css ---
div.example:before {
	top: -0.6em;
	left: -2.5em;
	width: 7.5em;
	text-align: center;
}

div.example:before {
	color: white;
	background: #1976B9;
	padding: 0.5em;
	border: none;
	border-radius: 0.4em;
	box-shadow: black 2px 2px 2px;
	margin-top: -0.5em;
	left: -1em;
}

div.example {
	background: #f4f4f4;
	padding: 0.5em;
	margin: 1em 0;
	border: thin solid #999;
	position: relative;
	clear: both;
}

div.example {
	color: #303030
}

div.issue {
	color: red;
	margin-top: 1em;
	padding: 0.5em;
	border-left: 5px solid red;
	padding-left: 1em;
	position: relative;
	color: gray;
	width: 50%;
}

div.issue:before {
	content: "Issue " counter(issue);
	background: none;
	padding: 0;
	margin: 0 0 0.7em 0;
	border: none;
	font-weight: bold;
	color: gray;
	display: block;
}

.issue {
	counter-increment: issue;
}

.toggle {
	font-size: smaller;
	color: gray;
	float: right;
}

Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-regions/Overview.src.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- Overview.src.html	25 Mar 2011 05:01:26 -0000	1.1
+++ Overview.src.html	4 May 2011 05:32:27 -0000	1.2
@@ -1,1785 +1,1469 @@
-<!doctype html public '-//W3C//DTD HTML 4.01//EN'
-  'http://www.w3.org/TR/html4/strict.dtd'>
- 
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
+"http://www.w3.org/TR/html4/strict.dtd">
+
 <html dir="ltr" lang="en">
-    <head profile="http://www.w3.org/2006/03/hcard">
-	    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
-    	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<head profile="http://www.w3.org/2006/03/hcard">
[...3002 lines suppressed...]
+    <h3 class="no-num" id="other-references">Other references</h3>
+    <!--begin-informative--><!--end-informative-->
+
+    <h2 class="no-num" id="index">Index</h2><!--index-->
+
+    <h2 class="no-num" id="property-index">Property index</h2>
+    <!-- properties -->
+    <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml
 sgml-declaration:"~/SGML/HTML4.decl"
@@ -1799,4 +1483,6 @@
 sgml-local-catalogs:nil
 sgml-local-ecat-files:nil
 End:
--->
\ No newline at end of file
+-->
+</body>
+</html>

Received on Wednesday, 4 May 2011 05:32:31 UTC