From a065e04d529da1d847b5062a12c46d916408bf32 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 21:46:22 -0500 Subject: update based on https://github.com/mdn/yari/issues/2028 --- .../tech/xul/attribute/menuitem.name/index.html | 38 ---------------------- 1 file changed, 38 deletions(-) delete mode 100644 files/zh-cn/mozilla/tech/xul/attribute/menuitem.name/index.html (limited to 'files/zh-cn/mozilla/tech/xul/attribute/menuitem.name/index.html') diff --git a/files/zh-cn/mozilla/tech/xul/attribute/menuitem.name/index.html b/files/zh-cn/mozilla/tech/xul/attribute/menuitem.name/index.html deleted file mode 100644 index a485138846..0000000000 --- a/files/zh-cn/mozilla/tech/xul/attribute/menuitem.name/index.html +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: menuitem.name -slug: Mozilla/Tech/XUL/Attribute/menuitem.name -tags: - - XUL Attributes -translation_of: Archive/Mozilla/XUL/Attribute/menuitem.name ---- -
- « XUL Reference home
-
-
- name
-
- Type: - - string name -
-
- Radio menuitems with the same name as put into a group. Only one menuitem in each radio group can be checked at a time.
-
-
-

Example

-
<toolbox>
-  <menubar id="planets-menubar">
-    <menu id="planet-menu" label="Planet">
-      <menupopup>
-        <menuitem id="jupiter" label="Jupiter" type="radio" name="planet"/>
-        <menuitem id="saturn" label="Saturn" type="radio" name="planet" checked="true"/>
-        <menuitem id="uranus" label="Uranus" type="radio" name="planet"/>
-      </menupopup>
-    </menu>
-  </menubar>
-</toolbox>
-
-

See also

-

name and menus in the XUL Tutorial

-
-

-- cgit v1.2.3-54-g00ecf