mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
90 lines
3.2 KiB
C
90 lines
3.2 KiB
C
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL") you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1999 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
|
|
/******
|
|
|
|
This file contains the list of all layout nsIAtoms and their values
|
|
|
|
It is designed to be used as inline input to nsLayoutAtoms.cpp *only*
|
|
through the magic of C preprocessing.
|
|
|
|
All entires must be enclosed in the macro LAYOUT_ATOM which will have cruel
|
|
and unusual things done to it
|
|
|
|
It is recommended (but not strictly necessary) to keep all entries
|
|
in alphabetical order
|
|
|
|
The first argument to LAYOUT_ATOM is the C++ identifier of the atom
|
|
The second argument is the string value of the atom
|
|
|
|
******/
|
|
|
|
|
|
// Alphabetical list of media type atoms
|
|
LAYOUT_ATOM(all, "all") // Media atoms must be lower case
|
|
LAYOUT_ATOM(aural, "aural")
|
|
LAYOUT_ATOM(braille, "braille")
|
|
LAYOUT_ATOM(embossed, "embossed")
|
|
LAYOUT_ATOM(handheld, "handheld")
|
|
LAYOUT_ATOM(print, "print")
|
|
LAYOUT_ATOM(projection, "projection")
|
|
LAYOUT_ATOM(screen, "screen")
|
|
LAYOUT_ATOM(tty, "tty")
|
|
LAYOUT_ATOM(tv, "tv")
|
|
|
|
// Alphabetical list of standard name space prefixes
|
|
LAYOUT_ATOM(htmlNameSpace, "html")
|
|
LAYOUT_ATOM(xmlNameSpace, "xml")
|
|
LAYOUT_ATOM(xmlnsNameSpace, "xmlns")
|
|
|
|
// Alphabetical list of frame additional child list names
|
|
LAYOUT_ATOM(absoluteList, "Absolute-list")
|
|
LAYOUT_ATOM(bulletList, "Bullet-list")
|
|
LAYOUT_ATOM(colGroupList, "ColGroup-list")
|
|
LAYOUT_ATOM(fixedList, "Fixed-list")
|
|
LAYOUT_ATOM(floaterList, "Floater-list")
|
|
LAYOUT_ATOM(popupList, "Popup-list")
|
|
|
|
// Alphabetical list of pseudo tag names for non-element content
|
|
LAYOUT_ATOM(commentTagName, "__moz_comment")
|
|
LAYOUT_ATOM(textTagName, "__moz_text")
|
|
LAYOUT_ATOM(processingInstructionTagName, "__moz_pi")
|
|
LAYOUT_ATOM(viewportPseudo, ":-moz-viewport")
|
|
LAYOUT_ATOM(pagePseudo, ":-moz-page")
|
|
|
|
// Alphabetical list of frame types
|
|
LAYOUT_ATOM(areaFrame, "AreaFrame")
|
|
LAYOUT_ATOM(blockFrame, "BlockFrame")
|
|
LAYOUT_ATOM(htmlFrameInnerFrame, "htmlFrameInnerFrame")
|
|
LAYOUT_ATOM(htmlFrameOuterFrame, "htmlFrameOuterFrame")
|
|
LAYOUT_ATOM(inlineFrame, "InlineFrame")
|
|
LAYOUT_ATOM(letterFrame, "LetterFrame")
|
|
LAYOUT_ATOM(lineFrame, "LineFrame")
|
|
LAYOUT_ATOM(pageFrame, "PageFrame")
|
|
LAYOUT_ATOM(placeholderFrame, "PlaceholderFrame")
|
|
LAYOUT_ATOM(positionedInlineFrame, "PositionedInlineFrame")
|
|
LAYOUT_ATOM(rootFrame, "RootFrame")
|
|
LAYOUT_ATOM(scrollFrame, "ScrollFrame")
|
|
LAYOUT_ATOM(tableOuterFrame, "TableOuterFrame")
|
|
LAYOUT_ATOM(tableFrame, "TableFrame")
|
|
LAYOUT_ATOM(tableRowGroupFrame, "TableRowGroupFrame")
|
|
LAYOUT_ATOM(tableRowFrame, "TableRowFrame")
|
|
LAYOUT_ATOM(tableCellFrame, "TableCellFrame")
|
|
LAYOUT_ATOM(textFrame, "TextFrame")
|
|
LAYOUT_ATOM(viewportFrame, "ViewportFrame")
|