亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? frames.php.svn-base

?? PHP 知識管理系統(基于樹結構的知識管理系統), 英文原版的PHP源碼。
?? SVN-BASE
?? 第 1 頁 / 共 2 頁
字號:
<?php/** *  Base include file for SimpleTest *  @package    SimpleTest *  @subpackage WebTester *  @version    $Id: frames.php 1672 2008-03-02 04:47:34Z edwardzyang $ *//**#@+ *  include other SimpleTest class files */require_once(dirname(__FILE__) . '/page.php');require_once(dirname(__FILE__) . '/user_agent.php');/**#@-*//** *    A composite page. Wraps a frameset page and *    adds subframes. The original page will be *    mostly ignored. Implements the SimplePage *    interface so as to be interchangeable. *    @package SimpleTest *    @subpackage WebTester */class SimpleFrameset {    var $_frameset;    var $_frames;    var $_focus;    var $_names;    /**     *    Stashes the frameset page. Will make use of the     *    browser to fetch the sub frames recursively.     *    @param SimplePage $page        Frameset page.     */    function SimpleFrameset(&$page) {        $this->_frameset = &$page;        $this->_frames = array();        $this->_focus = false;        $this->_names = array();    }    /**     *    Adds a parsed page to the frameset.     *    @param SimplePage $page    Frame page.     *    @param string $name        Name of frame in frameset.     *    @access public     */    function addFrame(&$page, $name = false) {        $this->_frames[] = &$page;        if ($name) {            $this->_names[$name] = count($this->_frames) - 1;        }    }    /**     *    Replaces existing frame with another. If the     *    frame is nested, then the call is passed down     *    one level.     *    @param array $path        Path of frame in frameset.     *    @param SimplePage $page   Frame source.     *    @access public     */    function setFrame($path, &$page) {        $name = array_shift($path);        if (isset($this->_names[$name])) {            $index = $this->_names[$name];        } else {            $index = $name - 1;        }        if (count($path) == 0) {            $this->_frames[$index] = &$page;            return;        }        $this->_frames[$index]->setFrame($path, $page);    }    /**     *    Accessor for current frame focus. Will be     *    false if no frame has focus. Will have the nested     *    frame focus if any.     *    @return array     Labels or indexes of nested frames.     *    @access public     */    function getFrameFocus() {        if ($this->_focus === false) {            return array();        }        return array_merge(                array($this->_getPublicNameFromIndex($this->_focus)),                $this->_frames[$this->_focus]->getFrameFocus());    }    /**     *    Turns an internal array index into the frames list     *    into a public name, or if none, then a one offset     *    index.     *    @param integer $subject    Internal index.     *    @return integer/string     Public name.     *    @access private     */    function _getPublicNameFromIndex($subject) {        foreach ($this->_names as $name => $index) {            if ($subject == $index) {                return $name;            }        }        return $subject + 1;    }    /**     *    Sets the focus by index. The integer index starts from 1.     *    If already focused and the target frame also has frames,     *    then the nested frame will be focused.     *    @param integer $choice    Chosen frame.     *    @return boolean           True if frame exists.     *    @access public     */    function setFrameFocusByIndex($choice) {        if (is_integer($this->_focus)) {            if ($this->_frames[$this->_focus]->hasFrames()) {                return $this->_frames[$this->_focus]->setFrameFocusByIndex($choice);            }        }        if (($choice < 1) || ($choice > count($this->_frames))) {            return false;        }        $this->_focus = $choice - 1;        return true;    }    /**     *    Sets the focus by name. If already focused and the     *    target frame also has frames, then the nested frame     *    will be focused.     *    @param string $name    Chosen frame.     *    @return boolean        True if frame exists.     *    @access public     */    function setFrameFocus($name) {        if (is_integer($this->_focus)) {            if ($this->_frames[$this->_focus]->hasFrames()) {                return $this->_frames[$this->_focus]->setFrameFocus($name);            }        }        if (in_array($name, array_keys($this->_names))) {            $this->_focus = $this->_names[$name];            return true;        }        return false;    }    /**     *    Clears the frame focus.     *    @access public     */    function clearFrameFocus() {        $this->_focus = false;        $this->_clearNestedFramesFocus();    }    /**     *    Clears the frame focus for any nested frames.     *    @access private     */    function _clearNestedFramesFocus() {        for ($i = 0; $i < count($this->_frames); $i++) {            $this->_frames[$i]->clearFrameFocus();        }    }    /**     *    Test for the presence of a frameset.     *    @return boolean        Always true.     *    @access public     */    function hasFrames() {        return true;    }    /**     *    Accessor for frames information.     *    @return array/string      Recursive hash of frame URL strings.     *                              The key is either a numerical     *                              index or the name attribute.     *    @access public     */    function getFrames() {        $report = array();        for ($i = 0; $i < count($this->_frames); $i++) {            $report[$this->_getPublicNameFromIndex($i)] =                    $this->_frames[$i]->getFrames();        }        return $report;    }    /**     *    Accessor for raw text of either all the pages or     *    the frame in focus.     *    @return string        Raw unparsed content.     *    @access public     */    function getRaw() {        if (is_integer($this->_focus)) {            return $this->_frames[$this->_focus]->getRaw();        }        $raw = '';        for ($i = 0; $i < count($this->_frames); $i++) {            $raw .= $this->_frames[$i]->getRaw();        }        return $raw;    }    /**     *    Accessor for plain text of either all the pages or     *    the frame in focus.     *    @return string        Plain text content.     *    @access public     */    function getText() {        if (is_integer($this->_focus)) {            return $this->_frames[$this->_focus]->getText();        }        $raw = '';        for ($i = 0; $i < count($this->_frames); $i++) {            $raw .= ' ' . $this->_frames[$i]->getText();        }        return trim($raw);    }    /**     *    Accessor for last error.     *    @return string        Error from last response.     *    @access public     */    function getTransportError() {        if (is_integer($this->_focus)) {            return $this->_frames[$this->_focus]->getTransportError();        }        return $this->_frameset->getTransportError();    }    /**     *    Request method used to fetch this frame.     *    @return string      GET, POST or HEAD.     *    @access public     */    function getMethod() {        if (is_integer($this->_focus)) {            return $this->_frames[$this->_focus]->getMethod();        }        return $this->_frameset->getMethod();    }    /**     *    Original resource name.     *    @return SimpleUrl        Current url.     *    @access public     */    function getUrl() {        if (is_integer($this->_focus)) {            $url = $this->_frames[$this->_focus]->getUrl();            $url->setTarget($this->_getPublicNameFromIndex($this->_focus));        } else {            $url = $this->_frameset->getUrl();        }        return $url;    }    /**     *    Page base URL.     *    @return SimpleUrl        Current url.     *    @access public     */    function getBaseUrl() {        if (is_integer($this->_focus)) {            $url = $this->_frames[$this->_focus]->getBaseUrl();        } else {            $url = $this->_frameset->getBaseUrl();        }        return $url;    }    /**     *    Expands expandomatic URLs into fully qualified     *    URLs for the frameset page.     *    @param SimpleUrl $url        Relative URL.     *    @return SimpleUrl            Absolute URL.     *    @access public     */    function expandUrl($url) {        return $this->_frameset->expandUrl($url);    }    /**     *    Original request data.     *    @return mixed              Sent content.     *    @access public     */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线成人高清不卡| 精品成人免费观看| 国内精品国产三级国产a久久 | 67194成人在线观看| 国产一区二区主播在线| 亚洲国产一区二区a毛片| 国产日韩一级二级三级| 欧美一区二区三区男人的天堂| 95精品视频在线| 国产麻豆一精品一av一免费| 午夜视黄欧洲亚洲| 亚洲素人一区二区| 国产精品无圣光一区二区| 欧美一区二区精品| 欧美丝袜自拍制服另类| 成人av资源站| 国产一区激情在线| 久久国产综合精品| 亚洲成人av一区| 亚洲黄色在线视频| 国产精品欧美一级免费| 精品国产乱码久久久久久久久| 91精品国产综合久久久久久久久久| 97精品电影院| 99这里都是精品| 国产成人精品三级| 国产麻豆成人传媒免费观看| 美女mm1313爽爽久久久蜜臀| 亚洲午夜久久久| 一区二区三区蜜桃网| 亚洲欧美日韩在线| 亚洲视频在线一区观看| 自拍av一区二区三区| 国产区在线观看成人精品| 久久久久久久久久久久久女国产乱 | 日本欧美肥老太交大片| 亚洲国产美女搞黄色| 一级精品视频在线观看宜春院| 中文字幕中文字幕一区| 国产午夜久久久久| 日本一二三四高清不卡| 国产亚洲精品超碰| 中文成人综合网| 中文字幕在线不卡| 椎名由奈av一区二区三区| 国产精品久久久久久久久免费丝袜 | 最新久久zyz资源站| 国产精品视频第一区| 中文字幕一区二区三区蜜月| 亚洲欧美视频在线观看视频| 亚洲三级免费观看| 亚洲国产一区二区a毛片| 亚洲成人久久影院| 石原莉奈一区二区三区在线观看| 日韩av一级片| 久草中文综合在线| 岛国一区二区在线观看| www.亚洲激情.com| 日本乱人伦aⅴ精品| 欧美日韩精品综合在线| 日韩视频在线一区二区| 2024国产精品| 亚洲四区在线观看| 亚洲国产精品久久人人爱蜜臀| 亚洲bt欧美bt精品777| 另类人妖一区二区av| 国产宾馆实践打屁股91| 色婷婷精品大视频在线蜜桃视频 | 色综合久久66| 911精品产国品一二三产区| 久久综合久久综合久久综合| 欧美国产综合一区二区| 伊人一区二区三区| 六月丁香婷婷色狠狠久久| 国产精品一区二区三区99| 99久久精品免费| 欧美精品黑人性xxxx| 久久久国产午夜精品| 一区二区三区在线免费视频| 天堂va蜜桃一区二区三区漫画版| 久久精品国产免费看久久精品| 成人涩涩免费视频| 欧美日韩中文字幕一区二区| 精品嫩草影院久久| 尤物在线观看一区| 国产精品伊人色| 欧美剧情电影在线观看完整版免费励志电影 | 国产一区二三区| 欧美性极品少妇| 国产欧美精品在线观看| 亚洲第一福利一区| 丁香婷婷综合色啪| 欧美精品乱码久久久久久| 国产精品视频九色porn| 六月丁香婷婷色狠狠久久| 一本久久a久久精品亚洲| 久久久蜜桃精品| 亚洲大片在线观看| 国产成人午夜视频| 6080午夜不卡| 亚洲激情在线激情| 国产高清在线观看免费不卡| 欧美福利视频一区| ...xxx性欧美| 国产麻豆91精品| 日韩一区二区三区视频在线| 亚洲精品视频在线观看网站| 国产成人精品免费在线| 日韩午夜电影av| 性欧美大战久久久久久久久| 91在线免费视频观看| wwwwww.欧美系列| 奇米在线7777在线精品| 在线免费亚洲电影| 中文字幕一区二区三区在线不卡 | 日本精品视频一区二区三区| 国产精品沙发午睡系列990531| 精品影视av免费| 在线综合+亚洲+欧美中文字幕| 亚洲美女区一区| a级精品国产片在线观看| 久久久国际精品| 国产在线一区二区| 日韩精品一区在线观看| 视频在线观看国产精品| 欧美写真视频网站| 亚洲欧美日韩在线| 色婷婷综合久色| 亚洲色图视频网| 99久久精品免费观看| 国产精品拍天天在线| 北条麻妃国产九九精品视频| 国产日产欧美一区| 国产成人免费视频精品含羞草妖精| 精品伦理精品一区| 精品综合久久久久久8888| 日韩视频在线一区二区| 久久精品国内一区二区三区| 日韩午夜激情电影| 精品午夜久久福利影院| 2024国产精品| 国产成人在线网站| 国产精品国产三级国产三级人妇| 国产成人福利片| 国产精品每日更新在线播放网址 | 欧美日韩卡一卡二| 日本一不卡视频| 欧美大片免费久久精品三p| 久久精品国产亚洲一区二区三区| 日韩视频国产视频| 极品瑜伽女神91| 国产欧美日韩精品a在线观看| 国产成人免费在线视频| 中文字幕精品三区| 一本大道久久a久久精二百| 亚洲国产一区在线观看| 日韩一二三区视频| 国产高清视频一区| 亚洲视频一区在线| 欧美三级日韩在线| 免费一级片91| 国产日韩三级在线| 欧美亚洲免费在线一区| 午夜精品福利久久久| 久久一日本道色综合| www.99精品| 亚洲成av人**亚洲成av**| 日韩三级视频在线看| 国产河南妇女毛片精品久久久| 亚洲欧美影音先锋| 69久久夜色精品国产69蝌蚪网| 国产一区二区福利视频| 亚洲欧美中日韩| 91.麻豆视频| 丰满亚洲少妇av| 亚洲一区二区三区四区不卡| 精品欧美一区二区久久 | 欧美日韩综合在线| 国产一区二区三区四区在线观看 | 国产精品美女一区二区在线观看| 欧美性色欧美a在线播放| 久久精品国产久精国产爱| 亚洲色图欧美在线| 日韩午夜精品电影| 91黄色激情网站| 国产精品夜夜爽| 亚洲第一精品在线| 国产精品伦理在线| 日韩欧美专区在线| 色哟哟一区二区| 国产尤物一区二区| 午夜成人免费视频| 亚洲欧洲另类国产综合| 日韩欧美美女一区二区三区| 色av成人天堂桃色av| 国产一区二区美女诱惑| 视频在线观看91| 亚洲天堂精品在线观看| 久久精品视频网| 日韩欧美中文一区|